]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-logs.php
Extension ext-network cleaned up
[mailer.git] / inc / modules / admin / what-logs.php
index 896073d96093a0f20187d99266e00ef53a717899..3cdb8f6007be98f65060e31258a446c7ab4b22a0 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 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -45,7 +45,7 @@ addYouAreHereLink('admin', __FILE__);
 
 if (isGetRequestElementSet('access')) {
        // Secure input and construct FQFN
-       $access = SQL_ESCAPE(secureString(getRequestElement('access')));
+       $access = SQL_ESCAPE(getRequestElement('access'));
        $target = sprintf("%slogs/%s", getPath(), $access);
 
        // Is the file valid and readable?
@@ -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 . '%}');