Merge branch 'runtime' into testing
This commit is contained in:
commit
adaad5bb5e
|
@ -37,6 +37,8 @@
|
||||||
* @license GNU Affero General Public License http://www.gnu.org/licenses/
|
* @license GNU Affero General Public License http://www.gnu.org/licenses/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
$_startTime = microtime(true);
|
||||||
|
|
||||||
define('INSTALLDIR', dirname(__FILE__));
|
define('INSTALLDIR', dirname(__FILE__));
|
||||||
define('STATUSNET', true);
|
define('STATUSNET', true);
|
||||||
define('LACONICA', true); // compatibility
|
define('LACONICA', true); // compatibility
|
||||||
|
|
|
@ -111,6 +111,19 @@ class Action extends HTMLOutputter // lawsuit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function endHTML()
|
||||||
|
{
|
||||||
|
global $_startTime;
|
||||||
|
|
||||||
|
if (isset($_startTime)) {
|
||||||
|
$endTime = microtime(true);
|
||||||
|
$diff = round(($endTime - $_startTime) * 1000);
|
||||||
|
$this->raw("<!-- ${diff}ms -->");
|
||||||
|
}
|
||||||
|
|
||||||
|
return parent::endHTML();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show head, a template method.
|
* Show head, a template method.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user