Update of /cvsroot/phpwiki/phpwiki/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2709
Modified Files:
WikiPluginCached.php
Log Message:
avoid ugly img border
Index: WikiPluginCached.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/WikiPluginCached.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -2 -b -p -d -r1.18 -r1.19
--- WikiPluginCached.php 1 Nov 2004 10:43:57 -0000 1.18
+++ WikiPluginCached.php 16 Dec 2004 18:30:59 -0000 1.19
@@ -420,4 +420,5 @@ class WikiPluginCached extends WikiPlugi
HTML::img( array(
'src' => $url,
+ 'border' => 0,
// 'alt' => htmlspecialchars($this->getAlt($dbi,$argarray,$request))
'usemap' => '#'.$key ))
@@ -444,4 +445,5 @@ class WikiPluginCached extends WikiPlugi
return HTML::img( array(
'src' => $url,
+ 'border' => 0,
'alt' => htmlspecialchars($this->getAlt($dbi, $argarray, $request)) ) );
}
@@ -1095,4 +1097,7 @@ class WikiPluginCached extends WikiPlugi
// $Log$
+// Revision 1.19 2004/12/16 18:30:59 rurban
+// avoid ugly img border
+//
// Revision 1.18 2004/11/01 10:43:57 rurban
// seperate PassUser methods into seperate dir (memory usage)
|