]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-logs.php
Typo fixed :-(
[mailer.git] / inc / modules / admin / what-logs.php
index 93a38da324f25b7af74d4b7ab5415f4564e31d61..bc0c597d0894348b21859ef0aa8eaf2d839fcf4b 100644 (file)
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -47,7 +48,7 @@ addMenuDescription('admin', __FILE__);
 if (isGetRequestParameterSet('access')) {
        // Secure input and construct FQFN
        $access = SQL_ESCAPE(secureString(getRequestParameter('access')));
-       $target = sprintf("%slogs/%s", getConfig('PATH'), $access);
+       $target = sprintf("%slogs/%s", getPath(), $access);
 
        // Is the file valid and readable?
        if (isFileReadable($target)) {
@@ -88,7 +89,7 @@ if (isGetRequestParameterSet('access')) {
        }
 } else {
        // Is the directory there?
-       if (isDirectory(getConfig('PATH') . getConfig('logs_base'))) {
+       if (isDirectory(getPath() . getConfig('logs_base'))) {
                // Logs directory does exist so begin the list
                outputHtml('<ol>');
 
@@ -108,7 +109,7 @@ if (isGetRequestParameterSet('access')) {
                outputHtml('</ol>');
        } else {
                // logs directory does not exist
-               loadTemplate('admin_settings_saved', false, getMessage('ADMIN_LOGS_DIR_404'));
+               loadTemplate('admin_settings_saved', false, '{--ADMIN_LOGS_DIR_404--}');
        }
 }