From: Evan Prodromou Date: Mon, 14 Mar 2011 20:39:14 +0000 (-0400) Subject: profile block can have actions X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=051e374792ae24467632282c7c0c30279f6dc9c0;p=quix0rs-gnu-social.git profile block can have actions --- diff --git a/lib/profileblock.php b/lib/profileblock.php index 26d38ee349..7fcc11ef1a 100644 --- a/lib/profileblock.php +++ b/lib/profileblock.php @@ -106,6 +106,8 @@ abstract class ProfileBlock extends Widget $description); } + $this->showActions(); + $this->out->elementEnd('div'); } @@ -114,4 +116,7 @@ abstract class ProfileBlock extends Widget return AVATAR_PROFILE_SIZE; } + function showActions() + { + } }