Skip to content

Commit

Permalink
refs #3464
Browse files Browse the repository at this point in the history
  • Loading branch information
kiall committed Dec 7, 2010
1 parent eea0e04 commit bc1e66c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion guide/about.install.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ There are a few things you'll want to do with your application before moving int
}
// Log the error
Kohana::$log->add(Kohana::ERROR, Kohana::exception_text($e));
Kohana::$log->add(Log::ERROR, Kohana::exception_text($e));
// Create a 404 response
$request->status = 404;
Expand Down
2 changes: 1 addition & 1 deletion guide/nl/about.install.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Er zijn enkele dingen dat je best doet met je applicatie vooraleer je deze in pr
}
// De error loggen
Kohana::$log->add(Kohana::ERROR, Kohana::exception_text($e));
Kohana::$log->add(Log::ERROR, Kohana::exception_text($e));
// Maak een 404 uitvoer
$request->status = 404;
Expand Down
2 changes: 1 addition & 1 deletion guide/ru-ru/about.install.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
}

// Log the error
Kohana::$log->add(Kohana::ERROR, Kohana::exception_text($e));
Kohana::$log->add(Log::ERROR, Kohana::exception_text($e));

// Create a 404 response
$request->status = 404;
Expand Down
2 changes: 1 addition & 1 deletion guide/zh-cn/about.install.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
}
// Log the error
Kohana::$log->add(Kohana::ERROR, Kohana::exception_text($e));
Kohana::$log->add(Log::ERROR, Kohana::exception_text($e));
// Create a 404 response
$request->status = 404;
Expand Down

0 comments on commit bc1e66c

Please sign in to comment.