inc/dns.inc.php
changeset 55 a885f557678f
parent 47 ae140472d97c
child 62 ce4919f37489
equal deleted inserted replaced
54:e858e7e1aab4 55:a885f557678f
   199 			error( _('If you specify an MX record it must be a hostname.') );
   199 			error( _('If you specify an MX record it must be a hostname.') );
   200 		}
   200 		}
   201 	}
   201 	}
   202 	else
   202 	else
   203 	{
   203 	{
   204 		$prio='';
   204 		$prio=0;
   205 	}
   205 	}
   206 	// Validate the TTL, it has to be numeric.
   206 	// Validate the TTL, it has to be numeric.
   207 	$ttl = (!isset($ttl) || !is_numeric($ttl)) ? $DEFAULT_TTL : $ttl;
   207 	$ttl = (!isset($ttl) || !is_numeric($ttl)) ? $DEFAULT_TTL : $ttl;
   208 }
   208 }
   209 
   209