Several more constants rewritten to getConfig()
[mailer.git] / inc / modules / admin / what-logs.php
index 9af39581e6650fe458c2e4618d88603683ee522f..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>');
 
@@ -102,7 +102,7 @@ if (REQUEST_ISSET_GET('access')) {
                        $file = basename($file);
 
                        // Okay, add it
-                       OUTPUT_HTML("<li><a href=\"{!URL!}/modules.php?module=admin&amp;what=".getWhat()."&amp;access=".urlencode($file)."\">".$file."</a></li>");
+                       OUTPUT_HTML("<li><a href=\"{?URL?}/modules.php?module=admin&amp;what=".getWhat()."&amp;access=".urlencode($file)."\">".$file."</a></li>");
                } // END - foreach
 
                // Finish list