Alternc  3.2
Alternc logiel libre pour l'hébergement
 All Data Structures Namespaces Files Functions Variables Pages
adm_domstyperegenerate.php
Go to the documentation of this file.
1 <?php
2 require_once("../class/config.php");
3 if (!$admin->enabled) {
4  __("This page is restricted to authorized staff");
5  exit();
6 }
7 
8 $fields = array (
9  "name" => array ("request", "string", ""),
10 );
12 
13 
14 if (empty($name) || (! $dom->domains_type_regenerate($name)) ) {
15  die($err->errstr());
16 } else {
17  $error="Regenerate pending";
18  include("adm_domstype.php");
19 }
20 
21 ?>
22 
23