Quote:
Originally Posted by tareqbd
I am using vb4.1.3 PL8, after submitting the report a blank page opens /report.php?do=sendemail2, the page doesn't show anything at all. again in my report it doesn't show any report or report status.
|
vB 4.1.0 - vB 4.1.4 doesn't have one hook which this mod needs.
you will need to do a file edit
open class_reportitem.php inside includes folder
Find:
Code:
$this->set_reportinfo($reportinfo);
$this->set_reportinfo_commonlinks($reportinfo);
Add Below:
Code:
($hook = vBulletinHook::fetch_hook('report_do_report')) ? eval($hook) : false;