X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fattachment.php;h=f149ca19d987978e4067bf6497431860e0071c74;hb=c48cdc7d50cc2920e3f41e34e9b5e19638331dd9;hp=22018ab043d06e49291c549756468ceddc478e17;hpb=c97048d01bea468e0cf8865b60c3c250b4515c39;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(); + } } }