3 require 'inc/init.php';
6 $op = (isset ($_REQUEST['op'])) ?
$_REQUEST['op'] : '';
8 if (!isset ($ophandler[$pageno][$tabno][$op]))
10 showError ("Invalid request in operation broker: page '${pageno}', tab '${tabno}', op '${op}'");
14 // We have a chance to handle an error before starting HTTP header.
15 $location = $ophandler[$pageno][$tabno][$op]();
16 header ("Location: " . $location);