]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-logs.php
Several more constants rewritten to getConfig()
[mailer.git] / inc / modules / admin / what-logs.php
index 49b9553395e5463bd783678d69ff69f6f34ad743..c69492f710c279e2d39d7c2fffdc2268c314a0ee 100644 (file)
@@ -48,7 +48,7 @@ ADD_DESCR('admin', __FILE__);
 if (REQUEST_ISSET_GET('access')) {
        // Secure input and construct FQFN
        $access = SQL_ESCAPE(strip_tags(REQUEST_GET('access')));
-       $target = sprintf("%slogs/%s", constant('PATH'), $access);
+       $target = sprintf("%slogs/%s", getConfig('PATH'), $access);
 
        // Is the file valid and readable?
        if (isFileReadable($target)) {
@@ -89,7 +89,7 @@ if (REQUEST_ISSET_GET('access')) {
        }
 } else {
        // Is the directory there?
-       if (isDirectory(constant('PATH') . getConfig('logs_base'))) {
+       if (isDirectory(getConfig('PATH') . getConfig('logs_base'))) {
                // Logs directory does exist so begin the list
                OUTPUT_HTML('<ol>');
 
@@ -101,8 +101,8 @@ if (REQUEST_ISSET_GET('access')) {
                        // Cut dirname away
                        $file = basename($file);
 
-                       // Okay, let us print it out
-                       OUTPUT_HTML("<li><a href=\"{!URL!}/modules.php?module=admin&amp;what=".getWhat()."&amp;access=".urlencode($file)."\">".$file."</a></li>");
+                       // Okay, add it
+                       OUTPUT_HTML("<li><a href=\"{?URL?}/modules.php?module=admin&amp;what=".getWhat()."&amp;access=".urlencode($file)."\">".$file."</a></li>");
                } // END - foreach
 
                // Finish list