diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-11-08 20:28:06 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-11-08 20:28:06 -0200 |
commit | 8336d43b33cef4a0cc268be7093b996520a0666b (patch) | |
tree | b7c21c0d5ef991ef9a73f066890195cdbfd4dc70 /muamba-widget.tpl.php | |
parent | f8a758f6d8b460a4c22a7aa8835ffa57708e800f (diff) | |
download | muamba-8336d43b33cef4a0cc268be7093b996520a0666b.tar.gz muamba-8336d43b33cef4a0cc268be7093b996520a0666b.tar.bz2 |
Widget fix
Diffstat (limited to 'muamba-widget.tpl.php')
-rw-r--r-- | muamba-widget.tpl.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/muamba-widget.tpl.php b/muamba-widget.tpl.php index 9052d67..9a0916a 100644 --- a/muamba-widget.tpl.php +++ b/muamba-widget.tpl.php @@ -55,7 +55,11 @@ else { if (!empty($content)) { $output = '<div class="muamba-widget">'; - $output .= '<h3>'. t('Options') .'</h3>'; + + if ($size != 'small') { + $output .= '<h3>'. t('Options') .'</h3>'; + } + $output .= $content; $output .= '</div>'; } |