From 976bda83dbfe207a29bf6c3a6fe72ceed75cd98f Mon Sep 17 00:00:00 2001 From: PayBas Date: Thu, 29 May 2014 17:16:37 +0200 Subject: [ticket/12608] Improved LTR and various bugfixes PHPBB3-12608 --- phpBB/phpbb/notification/type/disapprove_post.php | 10 ++++++++++ phpBB/phpbb/notification/type/disapprove_topic.php | 10 ++++++++++ 2 files changed, 20 insertions(+) (limited to 'phpBB/phpbb/notification') diff --git a/phpBB/phpbb/notification/type/disapprove_post.php b/phpBB/phpbb/notification/type/disapprove_post.php index c3dbe4e91d..004c484409 100644 --- a/phpBB/phpbb/notification/type/disapprove_post.php +++ b/phpBB/phpbb/notification/type/disapprove_post.php @@ -30,6 +30,16 @@ class disapprove_post extends \phpbb\notification\type\approve_post return 'disapprove_post'; } + /** + * Get the styling of the notification + * + * @return string + */ + public function get_styling() + { + return 'reported'; + } + /** * Language key used to output the text * diff --git a/phpBB/phpbb/notification/type/disapprove_topic.php b/phpBB/phpbb/notification/type/disapprove_topic.php index 2f29bb271e..42ca693f7a 100644 --- a/phpBB/phpbb/notification/type/disapprove_topic.php +++ b/phpBB/phpbb/notification/type/disapprove_topic.php @@ -30,6 +30,16 @@ class disapprove_topic extends \phpbb\notification\type\approve_topic return 'disapprove_topic'; } + /** + * Get the styling of the notification + * + * @return string + */ + public function get_styling() + { + return 'reported'; + } + /** * Language key used to output the text * -- cgit v1.2.1