From: <var...@us...> - 2008-08-29 13:30:05
|
Revision: 6221 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6221&view=rev Author: vargenau Date: 2008-08-29 13:30:14 +0000 (Fri, 29 Aug 2008) Log Message: ----------- Do not force image width and height Modified Paths: -------------- trunk/lib/PageList.php Modified: trunk/lib/PageList.php =================================================================== --- trunk/lib/PageList.php 2008-08-28 18:21:03 UTC (rev 6220) +++ trunk/lib/PageList.php 2008-08-29 13:30:14 UTC (rev 6221) @@ -126,8 +126,6 @@ $noimg_src = $WikiTheme->getButtonURL('no_order'); if ($noimg_src) $noimg = HTML::img(array('src' => $noimg_src, - 'width' => '7', - 'height' => '7', 'border' => 0, 'alt' => '.')); else @@ -147,8 +145,6 @@ $img->setAttr('alt', "."); } else { $img = HTML::img(array('src' => $src, - 'width' => '7', - 'height' => '7', 'border' => 0, 'alt' => _("Click to reverse sort order"))); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |