In the plugin: vBSEO :: Conditional Signatures postbit_display_complete
there is a line:
It should be:Code:$_vbseo_pg = array_merge( $this->post['usergroupid'], explode(',',$this->post['membergroupids']) );
Note the (array) after the array_merge - this must be present or you will get an array merge warning in php5Code:$_vbseo_pg = array_merge((array)$this->post['usergroupid'], explode(',',$this->post['membergroupids']) );


LinkBack URL
About LinkBacks





Reply With Quote
