PDA

View Full Version : Centreon Documentation issue


eboniface
08-19-2008, 05:05 PM
Hello,

I have just installed a Centreon 1.4.2.7 release on a system, and I try to click on Documentation link in the Centreon interface, unsuccessfully.

I have check quickly and found in /usr/local/centreon/www/include/doc/index.php:
$page = filter_var($_GET["page"], FILTER_SANITIZE_SPECIAL_CHARS);
$page = filter_var($page, INPUT_GET);

The second line is a mistake, as INPUT_GET is not a filter but a request type used by filter_input function, like in :
$page = filter_input( INPUT_GET, "page", FILTER_SANITIZE_SPECIAL_CHARS );
So, I simply comment the second line and everything is now ok.

Hope this helps.
Eric.

DonKiShoot
08-19-2008, 08:52 PM
mdr trop lol :D

Ca c'est une fonction qui a été testé en profondeur ...