Fix #1449
This commit is contained in:
parent
44e3c059f8
commit
99dcc5f80b
|
@ -79,28 +79,28 @@ $dom->unlock();
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
case "DIRECTORY": ?>
|
case "DIRECTORY": ?>
|
||||||
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval); ?>" size="28" />
|
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval); ?>" size="28" onKeyPress="getElementById('r_<?php echo $dt['name']?>').checked=true;" />
|
||||||
<?php display_browser( $targval , "main.t_".$dt['name'] ); ?>
|
<?php display_browser( $targval , "main.t_".$dt['name'] ); ?>
|
||||||
<?php
|
<?php
|
||||||
break;
|
break;
|
||||||
case "URL": ?>
|
case "URL": ?>
|
||||||
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe( (empty($targval)?'http://':$targval) ); ?>" size="50" />
|
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe( (empty($targval)?'http://':$targval) ); ?>" size="50" onKeyPress="getElementById('r_<?php echo $dt['name']?>').checked=true;" />
|
||||||
<small><?php __("(enter an URL here)"); ?></small><?php
|
<small><?php __("(enter an URL here)"); ?></small><?php
|
||||||
break;;
|
break;;
|
||||||
case 'IP':?>
|
case 'IP':?>
|
||||||
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval); ?>" size="16" />
|
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval); ?>" size="16" onKeyPress="getElementById('r_<?php echo $dt['name']?>').checked=true;" />
|
||||||
<small><?php __("(enter an IPv4 address, for example 192.168.1.2)"); ?></small><?php
|
<small><?php __("(enter an IPv4 address, for example 192.168.1.2)"); ?></small><?php
|
||||||
break;
|
break;
|
||||||
case 'IPV6':?>
|
case 'IPV6':?>
|
||||||
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval); ?>" size="32" />
|
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval); ?>" size="32" onKeyPress="getElementById('r_<?php echo $dt['name']?>').checked=true;" />
|
||||||
<small><?php __("(enter an IPv6 address, for example 2001:0910::0)"); ?></small><?php
|
<small><?php __("(enter an IPv6 address, for example 2001:0910::0)"); ?></small><?php
|
||||||
break;
|
break;
|
||||||
case 'TXT':?>
|
case 'TXT':?>
|
||||||
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval);?>" size="32" />
|
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval);?>" size="32" onKeyPress="getElementById('r_<?php echo $dt['name']?>').checked=true;" />
|
||||||
<small><?php __("(enter a TXT informations for this domain)"); ?></small></td><?php
|
<small><?php __("(enter a TXT informations for this domain)"); ?></small></td><?php
|
||||||
break;
|
break;
|
||||||
case 'DOMAIN':?>
|
case 'DOMAIN':?>
|
||||||
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval);?>" size="32" />
|
<input type="text" class="int" name="t_<?php echo $dt['name']?>" id="t_<?php echo $dt['name']?>" value="<?php ehe($targval);?>" size="32" onKeyPress="getElementById('r_<?php echo $dt['name']?>').checked=true;" />
|
||||||
<small><?php __("(enter a domain name or subdomain)"); ?></small><?php
|
<small><?php __("(enter a domain name or subdomain)"); ?></small><?php
|
||||||
break;
|
break;
|
||||||
} // switch ?>
|
} // switch ?>
|
||||||
|
|
Loading…
Reference in New Issue