]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Allow getting notice title without implying one
authorStephen Paul Weber <singpolyma@singpolyma.net>
Fri, 10 Jun 2016 21:00:01 +0000 (21:00 +0000)
committerStephen Paul Weber <singpolyma@singpolyma.net>
Fri, 10 Jun 2016 21:00:01 +0000 (21:00 +0000)
Sometimes I just want explicit titles, and not the generated "blah posted on date" text

classes/Notice.php

index f38de371678be3b21967a308907244e975d1567f..c130cccc268c1277baf023542d4ac13fbd2224f7 100644 (file)
@@ -248,10 +248,10 @@ class Notice extends Managed_DataObject
         return common_local_url('shownotice', array('notice' => $this->id), null, null, false);
     }
 
-    public function getTitle()
+    public function getTitle($imply=true)
     {
         $title = null;
-        if (Event::handle('GetNoticeTitle', array($this, &$title))) {
+        if (Event::handle('GetNoticeTitle', array($this, &$title)) && $imply) {
             // TRANS: Title of a notice posted without a title value.
             // TRANS: %1$s is a user name, %2$s is the notice creation date/time.
             $title = sprintf(_('%1$s\'s status on %2$s'),