]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-logs.php
Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / modules / admin / what-logs.php
index 896073d96093a0f20187d99266e00ef53a717899..2e1cf2c819caa36b81539176e094a83faac2bafb 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -45,8 +45,8 @@ addYouAreHereLink('admin', __FILE__);
 
 if (isGetRequestElementSet('access')) {
        // Secure input and construct FQFN
-       $access = SQL_ESCAPE(secureString(getRequestElement('access')));
-       $target = sprintf("%slogs/%s", getPath(), $access);
+       $access = sqlEscapeString(getRequestElement('access'));
+       $target = sprintf('%slogs/%s', getPath(), $access);
 
        // Is the file valid and readable?
        if (isFileReadable($target)) {
@@ -56,19 +56,19 @@ if (isGetRequestElementSet('access')) {
                // Set header
                if (substr($access, -3, 3) == 'log') {
                        // Output header
-                       sendHeader('Content-Type: text/plain');
+                       addHttpHeader('Content-Type: text/plain');
 
                        // Clean content
                        clearOutputBuffer();
                } elseif (substr($access, -3, 3) == '.gz') {
                        // @TODO Fix content-type here
-                       sendHeader('Content-Type: text/plain');
+                       addHttpHeader('Content-Type: text/plain');
 
                        // Clean content
                        clearOutputBuffer();
                } elseif (substr($access, -3, 3) == '.bz2') {
                        // @TODO Fix content-type here
-                       sendHeader('Content-Type: text/plain');
+                       addHttpHeader('Content-Type: text/plain');
 
                        // Clean content
                        clearOutputBuffer();
@@ -80,7 +80,7 @@ if (isGetRequestElementSet('access')) {
 
                // Output the logfile's content and exit
                print($content);
-               shutdown();
+               doShutdown();
        } else {
                // Not readable!
                displayMessage('{%message,LOGFILE_NOT_READABLE=' . $access . '%}');