Changeset 411
- Timestamp:
- 08/26/2007 02:33:22 PM (16 months ago)
- Location:
- branches/devel
- Files:
-
- 4 modified
-
application/views/welcome.php (modified) (1 diff)
-
modules/user_guide/controllers/user_guide.php (modified) (1 diff)
-
modules/user_guide/views/user_guide/content/general/bootstrapping.php (modified) (1 diff)
-
system/core/Kohana.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/devel/application/views/welcome.php
r373 r411 1 <h2><? =$message ?></h2>1 <h2><?php echo $message ?></h2> 2 2 <hr/> -
branches/devel/modules/user_guide/controllers/user_guide.php
r405 r411 53 53 public function _tags() 54 54 { 55 Kohana::$output = preg_replace_callback('!<(benchmark|event|file|definition)>.+?</ .+?>!', array($this, '_tag_update'), Kohana::$output);55 Kohana::$output = preg_replace_callback('!<(benchmark|event|file|definition)>.+?</[^>]+>!', array($this, '_tag_update'), Kohana::$output); 56 56 } 57 57 58 58 public function _tag_update($match) 59 59 { 60 preg_match('!^<( .+?)>(.+?)</.+>$!', $match[0], $tag);60 preg_match('!^<([^>]+)>(.+?)</[^>]+>$!', $match[0], $tag); 61 61 62 62 $type = $tag[2]; -
branches/devel/modules/user_guide/views/user_guide/content/general/bootstrapping.php
r405 r411 1 1 # System Bootstrapping 2 2 3 Kohana uses a <definition>Front Controller</definition> as part of it 's design. This file is the <file>index</file> file that rests in the directory that Kohana is installed in.3 Kohana uses a <definition>Front Controller</definition> as part of its design. This file is the <file>index</file> file that rests in the directory that Kohana is installed in. 4 4 5 5 The front controller validates the application and system paths, then loads <file>system/core/Bootstrap</file>. The Bootstrap file begins the process of initializing Kohana. -
branches/devel/system/core/Kohana.php
r410 r411 408 408 } 409 409 410 public static function callback ($callback, $params = FALSE)410 public static function callback($callback, $params = FALSE) 411 411 { 412 412 if (is_string($callback))
