]> git.mxchange.org Git - mailer.git/blobdiff - img.php
config.php *must* now be extended
[mailer.git] / img.php
diff --git a/img.php b/img.php
index 94878c19a323a5083df6d0425ad5b3308d65c34f..fa539416362c4fb201d3448b7a78ab98b7a87890 100644 (file)
--- a/img.php
+++ b/img.php
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
  * MXChange v0.2.1                                    Start: 10/12/2003 *
- * ===============                              Last change: 10/12/2004 *
+ * ===============                              Last change: 10/16/2008 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : img.php                                          *
  ************************************************************************/
 
 // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
-require_once("inc/libs/security_functions.php");
+require("inc/libs/security_functions.php");
 
 // Init "action" and "what"
-global $what, $action;
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
-if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
-if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
+$GLOBALS['what'] = "";
+$GLOBALS['action'] = "";
 
 // Set module
-$GLOBALS['module'] = "img"; $CSS = -1;
+$GLOBALS['module'] = "img";
+$GLOBALS['output_mode'] = -1;
 
 // Load the required file(s)
-require ("inc/config.php");
+require("inc/config.php");
 
-if (defined('mxchange_installed') && (mxchange_installed))
-{
-       if (!empty($_GET['code']))
-       {
+// Script installed?
+if (isInstalled()) {
+       // Load header
+       LOAD_INC_ONCE("inc/header.php");
+
+       // Code set?
+       if (REQUEST_ISSET_GET(('code'))) {
                // Generate image
-               GENERATE_IMAGE(bigintval($_GET['code']));
+               GENERATE_IMAGE(bigintval(REQUEST_GET('code')));
+       } elseif (REQUEST_ISSET_GET(('tag'))) {
+               // Tag set so create the IFN (Include-FileName)
+               $INC = sprintf("inc/img/tag-%s.php",
+                       REQUEST_GET(('tag'))
+               );
+
+               // Include is readable?
+               if (INCLUDE_READABLE($INC)) {
+                       // Include it
+                       LOAD_INC($INC);
+               } // END - if
        }
-}
- else
-{
-       // You have to configure first!
+
+       // Finish generation here
+       LOAD_INC_ONCE("inc/footer.php");
+} else {
+       // You have to install first!
        LOAD_URL("install.php");
 }
 
 // Really all done here... ;-)
-die();
-
-//
 ?>