
jeluf at users
Oct 11, 2004, 1:08 PM
Post #1 of 1
(3 views)
Permalink
|
|
phase3/includes Skin.php,1.182.2.20,1.182.2.21
|
|
Update of /cvsroot/wikipedia/phase3/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18032/includes Modified Files: Tag: REL1_3 Skin.php Log Message: BUG#187, BUG#669 Fix centered images. span apparently didn't work properly Index: Skin.php =================================================================== RCS file: /cvsroot/wikipedia/phase3/includes/Skin.php,v retrieving revision 1.182.2.20 retrieving revision 1.182.2.21 diff -C2 -d -r1.182.2.20 -r1.182.2.21 *** Skin.php 21 Sep 2004 16:39:40 -0000 1.182.2.20 --- Skin.php 11 Oct 2004 20:08:40 -0000 1.182.2.21 *************** *** 1803,1808 **** if ( 'center' == $align ) { ! $prefix = '<span style="text-align: center">'; ! $postfix = '</span>'; $align = 'none'; } --- 1803,1808 ---- if ( 'center' == $align ) { ! $prefix = '<div class="center">'; ! $postfix = '</div>'; $align = 'none'; }
|