Show
Ignore:
Timestamp:
02/26/2008 05:42:45 AM (9 months ago)
Author:
Geert
Message:
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/core/utf8/strcspn.php

    r1382 r2171  
    2727        preg_match('/^[^'.$mask.']+/u', $str, $matches); 
    2828 
    29         return (isset($matches[0])) ? utf8::strlen($matches[0]) : 0; 
     29        return isset($matches[0]) ? utf8::strlen($matches[0]) : 0; 
    3030}