2007-08-06 Sancho Lerena <slerena@gmail.com>

* reporting/stat_win.php, general/noaccess.php: Fixed problem with
        paths outside index.php call.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@595 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2007-08-08 18:01:47 +00:00
parent cee0fa4897
commit d8f015daeb
3 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
2007-08-06 Sancho Lerena <slerena@gmail.com> 2007-08-06 Sancho Lerena <slerena@gmail.com>
* reporting/stat_win.php, general/noaccess.php: Fixed problem with
paths outside index.php call.
* pandoradb.sql, alert_manager.php: Alert time support uses TIME format * pandoradb.sql, alert_manager.php: Alert time support uses TIME format
instead numeric (changes requested by esanchezm). instead numeric (changes requested by esanchezm).

View File

@ -90,7 +90,7 @@ class Image_Canvas_GD extends Image_Canvas_WithMap
* @access private * @access private
*/ */
// Pandora FMS: Beware of this, could be slow on old systems // Pandora FMS: Beware of this, could be slow on old systems
var $_antialias = 'driver'; var $_antialias = 'off';
/** /**
* Create the GD canvas. * Create the GD canvas.

View File

@ -32,7 +32,7 @@ include("../include/languages/language_".$language_code.".php");
if (comprueba_login() != 0) { if (comprueba_login() != 0) {
$REMOTE_ADDR = getenv ("REMOTE_ADDR"); $REMOTE_ADDR = getenv ("REMOTE_ADDR");
audit_db("Unknown",$REMOTE_ADDR, "ACL Violation","Trying to access graph window without auth"); audit_db("Unknown",$REMOTE_ADDR, "ACL Violation","Trying to access graph window without auth");
require ("general/noaccess.php"); require ("../general/noaccess.php");
exit; exit;
} }