From: Jens Frank Date: Mon, 11 Oct 2004 20:03:24 +0000 (+0000) Subject: BUG#187, BUG#669 Fix centered images. span apparently didn't work properly X-Git-Tag: 1.5.0alpha1~1582 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=134bd98b40000f0d26a9c65c2eb52f4704da5df3;p=lhc%2Fweb%2Fwiklou.git BUG#187, BUG#669 Fix centered images. span apparently didn't work properly --- diff --git a/includes/Skin.php b/includes/Skin.php index c3cae13e0f..41fa58a9b0 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1738,8 +1738,8 @@ class Skin { } if ( 'center' == $align ) { - $prefix = ''; - $postfix = ''; + $prefix = '
'; + $postfix = '
'; $align = 'none'; }