Skip to content

Commit

Permalink
Fix bad api call to exception handler
Browse files Browse the repository at this point in the history
  • Loading branch information
zombor committed Feb 7, 2011
1 parent 90d1695 commit 1372467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/kohana/kodoc/markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public function doIncludeViews($text)
ob_start();

// Capture the exception handler output and insert it instead
Kohana::exception_handler($e);
Kohana_exception::handler($e);

$replace[$search] = ob_get_clean();
}
Expand Down

4 comments on commit 1372467

@misa
Copy link
Contributor

@misa misa commented on 1372467 Feb 7, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could use my pull request ...

@zombor
Copy link
Contributor Author

@zombor zombor commented on 1372467 Feb 7, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was there an issue for it in redmine? If there isn't, we don't know about it.

@misa
Copy link
Contributor

@misa misa commented on 1372467 Feb 7, 2011

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would say, it is related to #2691 feature request as I mentioned in commit message.

@isaiahdw
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should open a new issue. That issue is closed so nobody will notice it.Thanks for the pull request though.

Please sign in to comment.