Removed unneeded call for define_syslog_variables, which is depreceated and will be removed in php6

This commit is contained in:
Andre Lorbach 2009-08-13 16:42:32 +02:00
parent 8f57974ff6
commit dafc1b6d6a

View File

@ -66,7 +66,7 @@ $LANG_EN = "en"; // Used for fallback
$LANG = "en"; // Default language
// Default Template vars
$content['BUILDNUMBER'] = "2.6.3";
$content['BUILDNUMBER'] = "2.6.4";
$content['TITLE'] = "phpLogCon :: Release " . $content['BUILDNUMBER']; // Default page title
$content['BASEPATH'] = $gl_root_path;
$content['SHOW_DONATEBUTTON'] = true; // Default = true!
@ -497,7 +497,8 @@ function CheckAndSetRunMode()
$content['MaxExecutionTime'] = ini_get("max_execution_time");
// Define and Inits Syslog variables now!
define_syslog_variables();
// DEPRECIATED! define_syslog_variables();
// Syslog Constants are defined by default anyway!
openlog("phpLogCon", LOG_PID, LOG_USER);
// --- Check necessary PHP Extensions!