]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/action.php
Partial implementation for ticket #2442: MobileProfile plugin should allow manual...
[quix0rs-gnu-social.git] / lib / action.php
index 26ebd20932247cb870d1c6f37326406c29a26812..173e2c2a5877491d690fc8813e6e00c05fed9956 100644 (file)
@@ -854,8 +854,11 @@ class Action extends HTMLOutputter // lawsuit
     function showFooter()
     {
         $this->elementStart('div', array('id' => 'footer'));
-        $this->showSecondaryNav();
-        $this->showLicenses();
+        if (Event::handle('StartShowInsideFooter', array($this))) {
+            $this->showSecondaryNav();
+            $this->showLicenses();
+            Event::handle('EndShowInsideFooter', array($this));
+        }
         $this->elementEnd('div');
     }