[eluser]adamp1[/eluser]
[quote author="adamp1" date="1258064751"][quote author="adamp1" date="1255521629"]Right issue seems to be have been a typo in the last update.
To fix please do the following:
Open
modules/preferences/models/preference_model.php.
1) The class is defined as
Code:
class Preference_model extends Base_model
please change this to
Code:
class Preference_model extends Model
2) In the constructor please change
Code:
parent::Base_model();
to
3) Scroll down to
set_item and replace its contents with the following
Code:
if( is_null($name))
{
return false;
}
$this->preferenceCache[$name] = $value;
if( is_array($value))
{
$value = $this->object_keyword . serialize($value);
}
$this->db->where('name', $name);
return $this->db->update(PREFERENCES, array('value'=>$value));
That should fix it.[/quote][/quote]