Diseño y Posicionamiento Web con Joomla › Foros › General › Joomla en General › Prohibición de símbolos al registrarse J15[RTO] › Re:Prohibición de símbolos al registrarse J15
Hola @Dagget,
Lamentablemente no funciono 🙁
trate:
// Check that username is not greater than 150 characters
$username = $this->get( ‘username’ );
$ilegal = array(‘а’,’б’,’в’,’г’,’д’,’е’,’ё’,’ж’,’з’,’и’,’й’,’к’,’л’,’м’,’н’,’о’,’п’,’р’,’с’,’т’,’у’,’ф’,’х’,’ц’,’ч’,’ш’,’щ’,’ъ’,’ы’,’ь’,’э’,’ю’,’я’);
$result = strrpos($username, $ilegal);
if ( strlen($username) > 150 && $result != false)
{
$username = substr( $username, 0, 150 );
$this->set( ‘username’, $username );
}