parent
1f980f92f2
commit
ef7be98e0c
|
@ -16,11 +16,13 @@ class InternalUrlValidator extends Zend_Validate_Abstract
|
||||||
*/
|
*/
|
||||||
public function isValid($value)
|
public function isValid($value)
|
||||||
{
|
{
|
||||||
$isExternal = Url::fromPath($value)->isExternal();
|
if (Url::fromPath($value)->isExternal()) {
|
||||||
if ($isExternal) {
|
|
||||||
$this->_error('IS_EXTERNAL');
|
$this->_error('IS_EXTERNAL');
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
return ! $isExternal;
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue