summaryrefslogtreecommitdiff
path: root/lib/attachmentnoticesection.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/attachmentnoticesection.php')
-rw-r--r--lib/attachmentnoticesection.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/attachmentnoticesection.php b/lib/attachmentnoticesection.php
index 578c171ff..25e64adf9 100644
--- a/lib/attachmentnoticesection.php
+++ b/lib/attachmentnoticesection.php
@@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class AttachmentNoticeSection extends NoticeSection
{
function showContent() {
@@ -59,11 +58,12 @@ class AttachmentNoticeSection extends NoticeSection
$notice->orderBy('created desc');
$notice->selectAdd('post_id as id');
$notice->find();
- return $notice;
+ return $notice;
}
function title()
{
+ // TRANS: Title.
return _('Notices where this attachment appears');
}
@@ -72,4 +72,3 @@ class AttachmentNoticeSection extends NoticeSection
return 'popular_notices';
}
}
-