From: <var...@us...> - 2009-10-28 17:08:17
|
Revision: 7239 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7239&view=rev Author: vargenau Date: 2009-10-28 17:08:09 +0000 (Wed, 28 Oct 2009) Log Message: ----------- Use "error" class, "baduri" class does not exist Modified Paths: -------------- trunk/lib/CachedMarkup.php Modified: trunk/lib/CachedMarkup.php =================================================================== --- trunk/lib/CachedMarkup.php 2009-10-28 09:48:52 UTC (rev 7238) +++ trunk/lib/CachedMarkup.php 2009-10-28 17:08:09 UTC (rev 7239) @@ -532,9 +532,7 @@ function _expandurl($url) { $m = array(); if (!preg_match('/^ ([^:]+) (:[:=]) (.+) $/x', $url, $m)) { - return HTML::strong(array('class' => 'rawurl'), - HTML::u(array('class' => 'baduri'), - _("BAD semantic relation link"))); + return HTML::span(array('class' => 'error'), _("BAD semantic relation link")); } $this->_relation = urldecode($m[1]); $is_attribute = ($m[2] == ':='); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |