Hide / Remove Time To Create Page on Kunena 2.0.3 - Joomla! Forum - community, help and support
/public_html/administrator/components/com_kunena/libraries/view.php
change
public function gettime() {
if ( !$this->config->time_to_create_page ) return;
$time = $this->profiler->gettime('total time');
return sprintf('%0.3f', $time);
to >>>
public function gettime() {
//if ( !$this->config->time_to_create_page ) return;
//$time = $this->profiler->gettime('total time');
//return sprintf('%0.3f', $time);
change
public function gettime() {
if ( !$this->config->time_to_create_page ) return;
$time = $this->profiler->gettime('total time');
return sprintf('%0.3f', $time);
to >>>
public function gettime() {
//if ( !$this->config->time_to_create_page ) return;
//$time = $this->profiler->gettime('total time');
//return sprintf('%0.3f', $time);
Comments
Post a Comment