function problem($reason = NULL, $title = NULL) { global $smarty; $tit = isset($title) ? $title : title($reason); $smarty->assign("pagetitle", $tit); $smarty->assign("template", "accessdenied.tpl"); $smarty->assign("reason", reason($reason)); $smarty->assign("help", help("accessdenied")); $smarty->assign("menu_button", menu_buttons()); $smarty->display("main.tpl"); die; }
$rec = array(); for ($i = $fromto[0]; $i < $fromto[1]; $i++) { $allrec[$i]['ttl'] = $allrec[$i]['ttl'] > 0 ? $allrec[$i]['ttl'] : ''; $rec[] = $allrec[$i]; } $users = $user->getAllusers(); $types = $conf->parameters; $err = ''; $err .= !is_array($zonerec) || !is_array($rec) ? $zone->getErr() : ''; $err .= !is_array($users) ? $user->getErr() : ''; $err .= !is_array($types) ? "Record types not foud\n" : ''; if ($err > '') { $smarty->assign("popuperror", implode("<br />", explode("\n", $err))); } $smarty->assign("zone", $zonerec); $smarty->assign("pagetitle", "Editing master zone"); $smarty->assign("rcount", sizeof($rec)); $smarty->assign("record", $rec); $smarty->assign("types", $types); $smarty->assign("userlist", $users); $smarty->assign("template", "recordread.tpl"); $smarty->assign("help", help("recordread")); $smarty->assign("menu_button", menu_buttons()); $smarty->assign("page_root", $src . "record.php?i=" . $_GET['i'] . "&"); $smarty->display("main.tpl"); } else { problem("notown"); } } else { access_denied(); }