1
Something I mentioned to some of you awhile ago, yet never got around to actually making was really very simple to accomplish….
le="color: #000000"><?php ...To be placed in the current Misc form... $form .= '<select name="synCase">'; $form .= '<option value ="rate">rate</option>'; $form .= '<option value ="report">report</option>'; $form .= '<option value ="post">post</option>'; $form .= '<option value ="topic">topic</option>'; $form .= '<option value ="forum">forum</option>'; $form .= '<option value ="category">category</option>'; $form .= '<option value ="moderate">moderate</option>'; $form .= '<option value ="read">read</option>'; $form .= '</select>'; ...Changing the original to not be as default and only when per item; reducing server load... if($case = $_GET['synCase']){mod_loadFunctions("recon", "newbb"); newbb_synchronization($case);}
This is from the Admin sync of Newbb 4 and partially 3, and is for the Dev to incorporate. These then make it perform one action per request on a large site, else it will fail otherwise.