Installed this and works perfectly, but we had to change one line because it slowed our forum down.
Looks like this one:
PHP Code:
if ($this->existing['styleid'] != $this->fetch_field['styleid'])
{
require_once(DIR . '/includes/functions_styleusers.php');
update_stylecache();
}
is called too often (I don't know where
userdata_postsave is used, but it sounds like it's every time the users submit something somewhere). So even when
PHP Code:
$this->existing['styleid']
doesn't exist at all (=NULL), the function is called. I changed it to:
PHP Code:
if ($this->existing['styleid']&&($this->existing['styleid'] != $this->fetch_field['styleid']))
{
require_once(DIR . '/includes/functions_styleusers.php');
update_stylecache();
}
..and our vB runs much smoother now.