Hi- Is this what you mean? It worked for me. // CLEANUP function cleanup($params) { unset($params['starttime']); unset($params['endtime']); unset($params['checkout']); unset($params['checkin']); unset($params['comment']); unset($params['usn']); unset($params['signup']); unset($params['submit']); unset($params['signupname']); return($params); } I also needed to modify the <? to <?php. However we are really happy using MRBS and would recommend people look into using that instead of trying to update...
Hi- Is this what you mean? // CLEANUP function cleanup($params) { unset($params['starttime']); unset($params['endtime']); unset($params['checkout']); unset($params['checkin']); unset($params['comment']); unset($params['usn']); unset($params['signup']); unset($params['submit']); unset($params['signupname']); return($params); } (I am looking into moving an old setup. Most everything we did in ORS was moved over to MRBS, which is very good and updated. One solution is still being used in ORS and I hope...