Changeset 2519
- Timestamp:
- 04/16/2008 08:00:08 PM (6 months ago)
- Files:
-
- 1 modified
-
trunk/system/helpers/valid.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/helpers/valid.php
r2491 r2519 248 248 public static function standard_text($str) 249 249 { 250 return (bool) preg_match('/^[-\pL\pN\pZ_ ]++$/uD', (string) $str);250 return (bool) preg_match('/^[-\pL\pN\pZ_.]++$/uD', (string) $str); 251 251 } 252 252
