Quote:
Originally Posted by Stoebi
Hi,
replace $vbulletin with $this->registry in the plugin Replacments (Hook postbit_display_complete) (2 times).
Code:
//$post[message]
if ($this->registry->options['post_replacements_enabled'] == '1') {
$replacments_array_mine = explode("|||", $this->registry->options['post_Replacements_option']);
foreach ($replacments_array_mine as $post_replace) {
$post_explode_rple = explode("===", $post_replace);
$post['message'] = str_replace($post_explode_rple['0'], $post_explode_rple['1'], $post['message']);
}
}
It works fantastic. I've clicked install.
Kind Regards,
Stoebi
|
thank you will upade the hack.