Minor css fixes, delete/pause addresses, validation fixes for nodes with 0 in address
This commit is contained in:
@@ -16,9 +16,9 @@ class TwoByteInteger implements Rule
|
||||
* @param mixed $value
|
||||
* @return bool
|
||||
*/
|
||||
public function passes($attribute, $value)
|
||||
public function passes($attribute,$value)
|
||||
{
|
||||
return (is_numeric($value) && ($value > 0) && ($value < DomainController::NUMBER_MAX)) || ($value === 'no');
|
||||
return (is_numeric($value) && ($value > 0) && ($value < DomainController::NUMBER_MAX));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user