[feladat @ 5]
- Second half of translation framework.
- Several small typo's in code fixed.
- Removed comments on a todo in leveldescription(), already done.
- Replaced dal.inc.php with DB.php from package DB-1.7.6 from
pear.php.net to fix problems using poweradmin 1.2.7-patched
with php5/pear. The DB package has already been superseded by
MDB2, but that version is incompatible with current code.
<?php// +--------------------------------------------------------------------+// | PowerAdmin |// +--------------------------------------------------------------------+// | Copyright (c) 1997-2002 The PowerAdmin Team |// +--------------------------------------------------------------------+// | This source file is subject to the license carried by the overal |// | program PowerAdmin as found on http://poweradmin.sf.net |// | The PowerAdmin program falls under the QPL License: |// | http://www.trolltech.com/developer/licensing/qpl.html |// +--------------------------------------------------------------------+// | Authors: Roeland Nieuwenhuis <trancer <AT> trancer <DOT> nl> |// | Sjeemz <sjeemz <AT> sjeemz <DOT> nl> |// +--------------------------------------------------------------------+//// $Id: delete_domain.php,v 1.6 2002/12/18 01:13:10 azurazu Exp $//require_once("inc/toolkit.inc.php");if(!level(5)){error(ERR_LEVEL_5);}if($_GET["id"]){if($_GET["confirm"]=='0'){clean_page("index.php");}elseif($_GET["confirm"]=='1'){delete_domain($_GET["id"]);clean_page("index.php");}include_once("inc/header.inc.php");$info=get_domain_info_from_id($_GET["id"]);?><H2><?echo_('Delete domain');?> "<?=$info["name"]?>"</H2><?echo_('Owner');?>: <?=$info["owner"]?><BR><?echo_('Number of records in zone');?>: <?=$info["numrec"]?><BR><BR> <FONT CLASS="warning"><?echo_('Are you sure?');?></FONT><BR><BR> <INPUT TYPE="button" CLASS="button" OnClick="location.href='<?=$_SERVER["REQUEST_URI"]?>&confirm=1'" VALUE="<?echo_('Yes');?>"> <INPUT TYPE="button" CLASS="button" OnClick="location.href='<?=$_SERVER["REQUEST_URI"]?>&confirm=0'" VALUE="<?echo_('No');?>"><?}elseif($_GET["edit"]){include_once("inc/header.inc.php");}else{include_once("inc/header.inc.php");die("Nothing to do!");}include_once("inc/footer.inc.php");