Merge pull request #107 from GrahamCampbell/master

Minor punctuation fixes
This commit is contained in:
Denis
2013-10-28 15:06:33 -07:00
+3 -3
View File
@@ -259,12 +259,12 @@ class Run
$output = ob_get_clean();
// If we"re allowed to, send output generated by handlers directly
// to the output, otherwise, and if the script doesn"t quit, return
// If we're allowed to, send output generated by handlers directly
// to the output, otherwise, and if the script doesn't quit, return
// it so that it may be used by the caller
if($this->writeToOutput()) {
// @todo Might be able to clean this up a bit better
// If we"re going to quit execution, cleanup all other output
// If we're going to quit execution, cleanup all other output
// buffers before sending our own output:
if($handlerResponse == Handler::QUIT && $this->allowQuit()) {
while (ob_get_level() > 0) ob_end_clean();