]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-logs.php
More other options moved out (to config_order)
[mailer.git] / inc / modules / admin / what-logs.php
index 85844bb5c00ca09b0a84a24ba63ab01c3f07e335..efffe465da0aa292b4742f59af0f252d2f93ea31 100644 (file)
@@ -75,17 +75,17 @@ if (!empty($_GET['access'])) {
        $dir = PATH.LOGS_BASE."/";
        if (is_dir($dir)) {
                // logs directory does exist
-               OUTPUT_HTML ("<OL>");
+               OUTPUT_HTML("<OL>");
                $handle = @opendir($dir) or mxchange_die("Cannot open directory ".LOGS_BASE."!");
                while($file = @readdir($handle)) {
                        // We currenly only like files with "access" as prefix, should be more flexible!
                        if (substr($file, 0, 6) == "access") {
                                // Okay, let us print it out
-                               OUTPUT_HTML ("<LI><A href=\"".URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&access=".urlencode($file)."\">".$file."</A></LI>");
+                               OUTPUT_HTML("<LI><A href=\"".URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&access=".urlencode($file)."\">".$file."</A></LI>");
                        }
                }
                @closedir($handle);
-               OUTPUT_HTML ("</OL>");
+               OUTPUT_HTML("</OL>");
        }
         else
        {