Add files via upload
This commit is contained in:
parent
faec3af6f7
commit
c5ee1bd4c7
@ -49,7 +49,7 @@ class formAddPromotion extends Form{
|
||||
$result = array();
|
||||
|
||||
$t = $this->test_input($datos['tittle']) ?? null;
|
||||
$tittle = str_replace(" ", "_", $t);
|
||||
$tittle = strtolower(str_replace(" ", "_", $t));
|
||||
|
||||
if ( empty($tittle) ) {
|
||||
$result['tittle'] = "El título no es válido";
|
||||
|
@ -61,7 +61,7 @@ class formEditFilm extends Form{
|
||||
}
|
||||
|
||||
$t = $this->test_input($datos['tittle']) ?? null;
|
||||
$tittle = str_replace(" ", "_", $t);
|
||||
$tittle = strtolower(str_replace(" ", "_", $t));
|
||||
//|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $tittle)
|
||||
if ( empty($tittle) ) {
|
||||
$result['tittle'] = "El título no es válido";
|
||||
|
@ -58,7 +58,7 @@ class formEditPromotion extends Form{
|
||||
}
|
||||
|
||||
$t = $this->test_input($datos['tittle']) ?? null;
|
||||
$tittle = str_replace(" ", "_", $t);
|
||||
$tittle = strtolower(str_replace(" ", "_", $t));
|
||||
if ( empty($tittle) ) {
|
||||
$result['tittle'] = "El título no es válido";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user