Apparently we do need the StationPrefs group. Since the group name was

hard-coded in everywhere, I didnt detect that this value was used in the app.
I changed the hard-coded values to use the value from the config file instead.

Fixed the Transport.php::xmlrpcCall() function, an object was not being
created before it was used.

Fixed the archive server URLs in the default config files.
This commit is contained in:
paul.baranowski 2010-09-10 15:49:35 -04:00
parent 73d672b552
commit e537255e27
13 changed files with 115 additions and 105 deletions

View file

@ -1432,10 +1432,10 @@ class GreenBox extends BasicStor {
* @return string
* preference value
*/
public function loadGroupPref($sessid, $group, $key)
public function loadGroupPref($group, $key)
{
$pr = new Prefs($this);
$res = $pr->loadGroupPref($sessid, $group, $key);
$res = $pr->loadGroupPref($group, $key);
return $res;
} // fn loadGroupPref