From cae943fa4ae9dc322285e0d25fd752d7de731ca9 Mon Sep 17 00:00:00 2001 From: slerena Date: Mon, 25 Jun 2007 10:31:13 +0000 Subject: [PATCH] 2007-06-25 Sancho Lerena * include/config.inc.php: Added backslash to some variables to avoid problems in wizard. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@537 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/include/config.inc.php | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) 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 +?>