MyBB Community Forums

Full Version: PHP help please again
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
guys please how to add a hook to edit thread?
This only adds to new thread!
$plugins->add_hook("datahandler_post_validate_thread", "something");
Tried this?

$plugins->add_hook('datahandler_post_validate_post', 'something');
i think this will also check replies but I only want it to check newthread and editpost functions?

Maybe this will work????

$plugins->add_hook('datahandler_post_update_post', "something");
(2014-01-08, 02:12 PM)marcus123 Wrote: [ -> ]i think this will also check replies but I only want it to check newthread and editpost functions?

Maybe this will work????

$plugins->add_hook('datahandler_post_update_post', "something");

Thanks, It works on plugin "Length Minimum in New Thread"
and solve error when creating new thread via TapaTalk Smile