[feladat @ 76]
Changed some of the functions that are used for the listing of (all)
zones. Instead of getting all zones from the database, it now only
requests exactlty what it needs. Considerable perfomance improvement.
<?phprequire_once("inc/toolkit.inc.php");if($_GET["id"]){if($_GET["confirm"]=='0'){clean_page("edit.php?id=".$_GET["domain"]);}elseif($_GET["confirm"]=='1'){delete_record($_GET["id"]);clean_page("edit.php?id=".$_GET["domain"]);}include_once("inc/header.inc.php");?><h2><?echo_('Delete record');?>"<?$data=get_record_from_id($_GET["id"]);print$data["name"]." IN ".$data["type"]." ".$data["content"];?>"</h2><?if(($data["type"]=="NS"&&$data["name"]==get_domain_name_from_id($_GET["domain"]))||$data["type"]=="SOA"){print"<font class=\"warning\">"._('You are trying to delete a record that is needed for this zone to work.')."</font><br>";}?><br><fontclass="warning"><?echo_('Are you sure?');?></font><br><br><inputtype="button"class="button"OnClick="location.href='<?echo$_SERVER["REQUEST_URI"]?>&confirm=1'"value="<?echo_('Yes');?>"><inputtype="button"class="button"OnClick="location.href='<?echo$_SERVER["REQUEST_URI"]?>&confirm=0'"value="<?echo_('No');?>"><?}else{include_once("inc/header.inc.php");die("Nothing to do!");}include_once("inc/footer.inc.php");