From: <var...@us...> - 2009-01-23 12:39:40
|
Revision: 6430 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6430&view=rev Author: vargenau Date: 2009-01-23 12:33:28 +0000 (Fri, 23 Jan 2009) Log Message: ----------- No need for a span Modified Paths: -------------- trunk/lib/plugin/CurrentTime.php Modified: trunk/lib/plugin/CurrentTime.php =================================================================== --- trunk/lib/plugin/CurrentTime.php 2009-01-22 17:03:37 UTC (rev 6429) +++ trunk/lib/plugin/CurrentTime.php 2009-01-23 12:33:28 UTC (rev 6430) @@ -84,7 +84,7 @@ $format = '%T'; } - return HTML::span(strftime($format, time())); + return HTML::raw(strftime($format, time())); } }; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |