Some diabook features can dramatically slow down the system. There is a new switch to disable this.

This commit is contained in:
Michael Vogel 2015-02-03 19:59:47 +01:00
parent 99e42e1274
commit f5ec5a4349
1 changed files with 3 additions and 3 deletions

View File

@ -408,7 +408,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
}} }}
// last 12 users // last 12 users
if($close_lastusers != "1") { if(($close_lastusers != "1") AND !get_config('diabook','disable_features')) {
$aside['$lastusers_title'] = t('Last users'); $aside['$lastusers_title'] = t('Last users');
$aside['$lastusers_items'] = array(); $aside['$lastusers_items'] = array();
$sql_extra = ""; $sql_extra = "";
@ -437,7 +437,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
}} }}
// last 10 liked items // last 10 liked items
if($close_lastlikes != "1") { if(($close_lastlikes != "1") AND !get_config('diabook','disable_features')) {
$aside['$like_title'] = t('Last likes'); $aside['$like_title'] = t('Last likes');
$aside['$like_items'] = array(); $aside['$like_items'] = array();
$r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM
@ -482,7 +482,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
}} }}
// last 12 photos // last 12 photos
if($close_lastphotos != "1") { if(($close_lastphotos != "1") AND !get_config('diabook','disable_features')) {
$aside['$photos_title'] = t('Last photos'); $aside['$photos_title'] = t('Last photos');
$aside['$photos_items'] = array(); $aside['$photos_items'] = array();
$r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM