Changeset 2064
- Timestamp:
- 02/16/2008 03:40:44 AM (9 months ago)
- Files:
-
- 4 modified
-
branches/website/application/config/routes.php (modified) (1 diff)
-
trunk/system/controllers/template.php (modified) (1 diff)
-
trunk/system/libraries/Validation.php (modified) (1 diff)
-
trunk/system/libraries/drivers/Database.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/website/application/config/routes.php
r1942 r2064 4 4 '_default' => 'home', 5 5 'gophp5' => 'news/gophp5', 6 'auth :any'=> 'home'6 'auth.+' => 'home' 7 7 ); -
trunk/system/controllers/template.php
r1911 r2064 20 20 protected $template = 'template'; 21 21 22 // Default to no auto-rendering22 // Default to do auto-rendering 23 23 protected $auto_render = TRUE; 24 24 -
trunk/system/libraries/Validation.php
r2063 r2064 492 492 return FALSE; 493 493 494 $size = strlen($str);494 $size = utf8::strlen($str); 495 495 $status = FALSE; 496 496 -
trunk/system/libraries/drivers/Database.php
r2062 r2064 287 287 break; 288 288 case 'double': 289 // Convert to non-locale aware float to prevent possible commas 289 290 $value = sprintf('%F', $value); 290 291 break;
