Removed finally
keyword, bringing back 5.4
This commit is contained in:
parent
e662b8f2cd
commit
9dadc1c821
2 changed files with 7 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
||||||
language: php
|
language: php
|
||||||
|
|
||||||
php:
|
php:
|
||||||
|
- 5.4
|
||||||
- 5.5
|
- 5.5
|
||||||
- hhvm
|
- hhvm
|
||||||
|
|
||||||
|
|
|
@ -379,15 +379,13 @@ class Controller extends Object
|
||||||
{
|
{
|
||||||
$output = $e->getMessage();
|
$output = $e->getMessage();
|
||||||
}
|
}
|
||||||
finally
|
|
||||||
{
|
|
||||||
echo $output;
|
|
||||||
|
|
||||||
// Display the Profiler's report if the stars are aligned
|
echo $output;
|
||||||
if ($this->config->pickles['profiler'])
|
|
||||||
{
|
// Display the Profiler's report if the stars are aligned
|
||||||
Profiler::report();
|
if ($this->config->pickles['profiler'])
|
||||||
}
|
{
|
||||||
|
Profiler::report();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue