2015-01-29, 08:16 PM
I changed the compatibility of the Tagging Plugin to 18*
There is a hook added for "postbit"
The function for that is:
If I change that to:
It will still be normal. Even if I add a die() or something to that function, it will still be normal.
There is a hook added for "postbit"
$plugins->add_hook("postbit", "tagging_show_post");
The function for that is:
function tagging_show_post($post)
{
$post['message'] = tagging_parse($post['message'], $post['tags']);
return $post;
}
If I change that to:
function tagging_show_post($post)
{
//$post['message'] = tagging_parse($post['message'], $post['tags']);
$post['message'] = "test";
return $post;
}
It will still be normal. Even if I add a die() or something to that function, it will still be normal.