]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/searchaction.php
isReadOnly() now takes arguments
[quix0rs-gnu-social.git] / lib / searchaction.php
index 918f8dd9afd0634c63171d1b81f9822e984eee76..e74450e11f3e06dee57ce04754d81c7ac02a6bd6 100644 (file)
@@ -51,7 +51,7 @@ class SearchAction extends Action
      *
      * @return boolean true
      */
-    function isReadOnly()
+    function isReadOnly($args)
     {
         return true;
     }
@@ -152,8 +152,11 @@ You can also try your search on other engines:
 
 E_O_T
 ), $qe, $qe, $qe, $qe);
-        $this->elementStart('div', 'blankfiller');
+        $this->elementStart('dl', array('id' => 'help_search', 'class' => 'help'));
+        $this->element('dt', null, _('Search help'));
+        $this->elementStart('dd', 'instructions');
         $this->raw(common_markup_to_html($message));
+        $this->elementEnd('dd');
         $this->elementEnd('div');
     }
 }