X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=actions%2Fattachment.php;h=f149ca19d987978e4067bf6497431860e0071c74;hb=0e439117a75698629c5066d0241ab41dc07b5ee1;hp=22018ab043d06e49291c549756468ceddc478e17;hpb=e5961efc278c992be6dc057364771ff3266921d1;p=quix0rs-gnu-social.git diff --git a/actions/attachment.php b/actions/attachment.php index 22018ab043..f149ca19d9 100644 --- a/actions/attachment.php +++ b/actions/attachment.php @@ -173,7 +173,9 @@ class AttachmentAction extends Action function showSections() { $ns = new AttachmentNoticeSection($this); $ns->show(); - $atcs = new AttachmentTagCloudSection($this); - $atcs->show(); + if (!common_config('performance', 'high')) { + $atcs = new AttachmentTagCloudSection($this); + $atcs->show(); + } } }