if-block rewrittten, some TODOs/default added
[mailer.git] / img.php
diff --git a/img.php b/img.php
index db6512ae51338842312aeb142b1c4e0c900227fc..444b1b96f590f6842bda1cdeb13d77e7d99e03de 100644 (file)
--- a/img.php
+++ b/img.php
@@ -51,36 +51,33 @@ $GLOBALS['output_mode'] = -1;
 require('inc/config-global.php');
 
 // Script installed?
-if (isInstalled()) {
-       // Load header
-       loadIncludeOnce('inc/header.php');
+if (!isInstalled()) {
+       // You have to install first!
+       redirectToUrl('install.php');
+} // END - if
 
-       // Code set?
-       if (REQUEST_ISSET_GET(('code'))) {
-               // Generate image
-               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')
-               );
+// Load header
+loadIncludeOnce('inc/header.php');
 
-               // Include is readable?
-               if (isIncludeReadable($INC)) {
-                       // Include it
-                       loadInclude($INC);
-               } // END - if
-       }
+// Code set?
+if (REQUEST_ISSET_GET(('code'))) {
+       // Generate image
+       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')
+       );
 
-       // Finish generation here
-       loadIncludeOnce('inc/footer.php');
-} else {
-       // You have to install first!
-       redirectToUrl('install.php');
+       // Include is readable?
+       if (isIncludeReadable($INC)) {
+               // Include it
+               loadInclude($INC);
+       } // END - if
 }
 
-// Really all done here... ;-)
-shutdown();
+// Finish generation here
+loadIncludeOnce('inc/footer.php');
 
-//
+// [EOF]
 ?>