[Phpfreechat-svn] SF.net SVN: phpfreechat: [997] trunk/src/pfcglobalconfig.class.php
Status: Beta
Brought to you by:
kerphi
|
From: <ke...@us...> - 2007-03-11 13:45:34
|
Revision: 997
http://svn.sourceforge.net/phpfreechat/?rev=997&view=rev
Author: kerphi
Date: 2007-03-11 06:45:33 -0700 (Sun, 11 Mar 2007)
Log Message:
-----------
fix a problem with dynamic parameters
Modified Paths:
--------------
trunk/src/pfcglobalconfig.class.php
Modified: trunk/src/pfcglobalconfig.class.php
===================================================================
--- trunk/src/pfcglobalconfig.class.php 2007-03-11 12:41:53 UTC (rev 996)
+++ trunk/src/pfcglobalconfig.class.php 2007-03-11 13:45:33 UTC (rev 997)
@@ -549,18 +549,10 @@
include $cachefile;
foreach($pfc_conf as $key => $val)
- $this->$key = $val;
-
- /*
- $pfc_configvar = unserialize(file_get_contents($cachefile));
- foreach($pfc_configvar as $key => $val)
- {
// the dynamics parameters must not be cached
if (!in_array($key,$this->_dyn_params))
$this->$key = $val;
- }
- */
-
+
return true; // synchronized
}
else
@@ -668,4 +660,4 @@
}
}
-?>
\ No newline at end of file
+?>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|