diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-21 15:56:12 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-21 15:56:12 -0500 |
commit | 279ad3c17ea993d3a20c136b45223cc53a6ad0ca (patch) | |
tree | 0e9d49e9afa6f76c4b3b2f54b187a5ae8a106a92 /app | |
parent | 48ef507b077e02cb9cf7327ad331cd1d2b0058a6 (diff) |
Add Debian 6 in Vagrantfile to test with PHP 5.3.3
Diffstat (limited to 'app')
-rw-r--r-- | app/Controller/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php index 548fdb40..d949048d 100644 --- a/app/Controller/Base.php +++ b/app/Controller/Base.php @@ -119,7 +119,7 @@ abstract class Base } $this->container['logger']->debug('SQL_QUERIES={nb}', array('nb' => $this->container['db']->nb_queries)); - $this->container['logger']->debug('RENDERING={time}', array('time' => microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'])); + $this->container['logger']->debug('RENDERING={time}', array('time' => microtime(true) - @$_SERVER['REQUEST_TIME_FLOAT'])); } } |