mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Some diabook features can dramatically slow down the system. There is a new switch to disable this.
This commit is contained in:
parent
99e42e1274
commit
f5ec5a4349
1 changed files with 3 additions and 3 deletions
|
@ -408,7 +408,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
|
|||
}}
|
||||
|
||||
// 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_items'] = array();
|
||||
$sql_extra = "";
|
||||
|
@ -437,7 +437,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
|
|||
}}
|
||||
|
||||
// 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_items'] = array();
|
||||
$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
|
||||
if($close_lastphotos != "1") {
|
||||
if(($close_lastphotos != "1") AND !get_config('diabook','disable_features')) {
|
||||
$aside['$photos_title'] = t('Last photos');
|
||||
$aside['$photos_items'] = array();
|
||||
$r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM
|
||||
|
|
Loading…
Reference in a new issue