2007-06-25 Sancho Lerena <slerena@artica.es>
* 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
This commit is contained in:
parent
68aad3a654
commit
cae943fa4a
pandora_console
|
@ -1,3 +1,8 @@
|
|||
2007-06-25 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* include/config.inc.php: Added backslash to some variables to
|
||||
avoid problems in wizard.
|
||||
|
||||
2007-06-22 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
This commit should finish Pandora FMS Console 1.3 beta 1 :-)
|
||||
|
|
|
@ -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);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue