Changeset 456
- Timestamp:
- 09/01/2007 03:13:26 AM (14 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
modules/user_guide/views/user_guide/content/kohana/requirements.php (modified) (1 diff)
-
system/core/utf8.php (modified) (1 diff)
-
system/libraries/URI.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/user_guide/views/user_guide/content/kohana/requirements.php
r447 r456 22 22 3. Postgres 23 23 24 2. The [mbstring](http://php.net/mbstring) extension. 25 * It will speed up the utf8 class 26 * However it must *not* be overloading the original string functions 27 24 28 25 29 *[HTTP]: Hyper Text Transfer Protocol -
trunk/system/core/utf8.php
r447 r456 27 27 * - The mbstring extension is highly recommended but must not be overloading string functions. 28 28 */ 29 if (preg_match('/^. {1}/u', 'ñ') !== 1)29 if (preg_match('/^.$/u', 'ñ') !== 1) 30 30 { 31 31 trigger_error -
trunk/system/libraries/URI.php
r453 r456 22 22 * 23 23 * @access public 24 * @param integer25 * @param boolean24 * @param integer 25 * @param boolean 26 26 * @return array 27 27 */
