Explorar el Código

strlen of nothing is not nice. :P

Signed-off-by: emanuele <[email protected]>
emanuele hace 11 años
padre
commit
a3aad36e36
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Sources/Profile-Modify.php

+ 1 - 1
Sources/Profile-Modify.php

@@ -639,7 +639,7 @@ function loadProfileFields($force_reload = false)
 			'input_validate' => create_function('&$value', '
 				global $smcFunc;
 
-				if ($smcFunc[\'strlen\'] > 50)
+				if ($smcFunc[\'strlen\']($value) > 50)
 					return \'user_title_too_long\';
 
 				return true;