//Mod message source include $notifies = dbquery("SELECT * FROM ".$db_prefix."thread_mod_notify WHERE thread_id=".$_GET['thread_id']." AND post_id=".$data['post_id']); if(dbrows($notifies)){ $notify_id = 1; echo "


"; echo "".$locale['not5']."
"; while($notify = dbarray($notifies)){ echo "
    $notify_id.".$notify['thread_notify_text']."-".$notify['thread_notify_user']."-".date("Y-m-d H:i:s", $notify['thread_notify_date']).""; if(iMOD){ echo " - ".$locale['not12'].""; } echo "
"; $notify_id++; } } //End of mod message source include