diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index eaea204e62..ae71a7d8ad 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2007-06-25 Sancho Lerena + + * include/config.inc.php: Added backslash to some variables to + avoid problems in wizard. + 2007-06-22 Sancho Lerena This commit should finish Pandora FMS Console 1.3 beta 1 :-) diff --git a/pandora_console/include/config.inc.php b/pandora_console/include/config.inc.php index 609f2d1792..55a173240b 100644 --- a/pandora_console/include/config.inc.php +++ b/pandora_console/include/config.inc.php @@ -47,10 +47,10 @@ error_reporting(E_ALL); //This is directory where placed "attachment" directory, to upload files stores. // This MUST be writtable by http server user, and should be in pandora root. // Please append "/" to the end. -$attachment_store=$config_homedir."attachment/"; +$attachment_store=$config_homedir."/attachment/"; // Default font used for graphics (a Free TrueType font included with Pandora FMS) -$config_fontpath = $config_homedir."reporting/FreeSans.ttf"; +$config_fontpath = $config_homedir."/reporting/FreeSans.ttf"; // Style (pandora by default) $config_style = "pandora"; @@ -127,4 +127,4 @@ if ($language_code == 'ast_es') { } else $help_code = substr($language_code,0,2); -?> \ No newline at end of file +?>