From: <var...@us...> - 2014-06-13 09:42:45
|
Revision: 8904 http://sourceforge.net/p/phpwiki/code/8904 Author: vargenau Date: 2014-06-13 09:42:38 +0000 (Fri, 13 Jun 2014) Log Message: ----------- No name attribute for HTML::a Modified Paths: -------------- trunk/lib/InlineParser.php Modified: trunk/lib/InlineParser.php =================================================================== --- trunk/lib/InlineParser.php 2014-06-13 09:28:23 UTC (rev 8903) +++ trunk/lib/InlineParser.php 2014-06-13 09:42:38 UTC (rev 8904) @@ -464,8 +464,7 @@ if ($hash) { // It's an anchor, not a link... $id = MangleXmlIdentifier($link); - return HTML::a(array('name' => $id, 'id' => $id), - $bar ? $label : $link); + return HTML::a(array('id' => $id), $bar ? $label : $link); } if (preg_match("#^(" . ALLOWED_PROTOCOLS . "):#", $link)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |