Changeset 2250
- Timestamp:
- 03/09/2008 03:12:35 PM (9 months ago)
- Location:
- trunk
- Files:
-
- 1 removed
- 2 modified
-
index.php (modified) (2 diffs)
-
system/libraries/Router.php (modified) (1 diff)
-
system/views/kohana_form.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r2249 r2250 67 67 define('KOHANA_ERROR_CSS', 68 68 // Any of these styles can be changed to affect all error messages. 69 'div#kohana_error { background: #fff; border:solid 1px #ccc; font-family:sans-serif; color:#111; font-size: 14px; line-height: 130%; vertical-align: baseline; }'.70 'div#kohana_error h3 { color:#fff; font-size:16px; padding:8px 6px; margin:0 0 8px; background: #f15a00; text-align:center; }'.69 'div#kohana_error { background:#fff; border:solid 1px #ccc; font-family:sans-serif; color:#111; font-size:14px; line-height:130%; }'. 70 'div#kohana_error h3 { color:#fff; font-size:16px; padding:8px 6px; margin:0 0 8px; background:#f15a00; text-align:center; }'. 71 71 'div#kohana_error a { color:#228; text-decoration:none; }'. 72 72 'div#kohana_error a:hover { text-decoration:underline; }'. … … 82 82 'div#kohana_error code { background:#eaeee5; border:solid 0 #D6D8D1; border-width:0 1px 1px 0; }'. 83 83 'div#kohana_error .block { display:block; text-align:left; }'. 84 'div#kohana_error .stats { padding: 4px; background: #eee; border-top:solid 1px #ccc; text-align:center; font-size:10px; color:#888; }'.84 'div#kohana_error .stats { padding:4px; background: #eee; border-top:solid 1px #ccc; text-align:center; font-size:10px; color:#888; }'. 85 85 'div#kohana_error .backtrace { margin:0; padding:0 6px; list-style:none; line-height:12px; }' 86 86 ); -
trunk/system/libraries/Router.php
r2182 r2250 74 74 foreach(self::$routes as $key => $val) 75 75 { 76 if ($key == '_default') continue;76 if ($key === '_default') continue; 77 77 78 78 // Does this route match the current URI?
