2006-04-26 12:28:53 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
$Id: dom_subedit.php,v 1.3 2003/08/13 23:01:45 root Exp $
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
AlternC - Web Hosting System
|
|
|
|
Copyright (C) 2002 by the AlternC Development Team.
|
|
|
|
http://alternc.org/
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Based on:
|
|
|
|
Valentin Lacambre's web hosting softwares: http://altern.org/
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
LICENSE
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License (GPL)
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
To read the license please visit http://www.gnu.org/copyleft/gpl.html
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Original Author of file:
|
|
|
|
Purpose of file:
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
require_once("../class/config.php");
|
2009-09-08 05:29:38 +00:00
|
|
|
include_once("head.php");
|
|
|
|
|
2011-01-28 15:55:26 +00:00
|
|
|
|
2009-09-08 05:29:38 +00:00
|
|
|
$fields = array (
|
|
|
|
"domain" => array ("request", "string", ""),
|
|
|
|
"sub" => array ("request", "string", ""),
|
2011-01-28 15:55:26 +00:00
|
|
|
"type" => array ("request", "string", $dom->type_local),
|
|
|
|
"value" => array ("request", "string", ""),
|
2009-09-08 05:29:38 +00:00
|
|
|
);
|
|
|
|
getFields($fields);
|
2006-04-26 12:28:53 +00:00
|
|
|
|
|
|
|
$dom->lock();
|
2011-01-28 15:55:26 +00:00
|
|
|
$domroot=$dom->get_domain_all($domain);
|
2010-04-29 08:31:15 +00:00
|
|
|
if (!$noread) {
|
2011-01-28 15:55:26 +00:00
|
|
|
if (!$r=$dom->get_sub_domain_all($domain,$sub,$type,$value)) {
|
2010-04-29 08:31:15 +00:00
|
|
|
$error=$err->errstr();
|
2011-01-28 15:55:26 +00:00
|
|
|
}
|
|
|
|
}
|
2010-04-29 08:31:15 +00:00
|
|
|
|
2011-01-28 15:55:26 +00:00
|
|
|
echo "<h3>";
|
|
|
|
__("Editing subdomain");
|
|
|
|
echo " http://"; ecif($sub,$sub."."); echo $domain."</h3>";
|
|
|
|
if ($error) {
|
|
|
|
echo "<p class=\"error\">$error</p>";
|
|
|
|
include_once("foot.php");
|
|
|
|
exit();
|
|
|
|
}
|
2006-04-26 12:28:53 +00:00
|
|
|
$dom->unlock();
|
|
|
|
?>
|
2011-01-28 15:55:26 +00:00
|
|
|
|
2010-04-29 14:29:27 +00:00
|
|
|
<hr id="topbar"/>
|
2010-03-04 16:16:13 +00:00
|
|
|
<br />
|
2011-01-28 15:55:26 +00:00
|
|
|
<?php
|
2011-03-27 13:21:09 +00:00
|
|
|
$isedit=true;
|
2011-01-28 15:55:26 +00:00
|
|
|
require_once('dom_edit.inc.php');
|
|
|
|
sub_domains_edit($domain,$sub,$type,$value);
|
2010-11-14 16:54:27 +00:00
|
|
|
|
2011-01-28 15:55:26 +00:00
|
|
|
include_once("foot.php");
|
|
|
|
?>
|