Edit report at http://pear.php.net/bugs/bug.php?id=11813&edit=1
ID: 11813
Updated by: demon.gene@gmail.com
Reported By: rele at gmx dot de
Summary: @link URL short description does'nt work
Status: Open
Type: Bug
Package: PhpDocumentor
Operating System: Windows XP SP2
Package Version: 1.4.0
PHP Version: 5.2.3
-Roadmap Versions:
+Roadmap Versions: 1.4.3
New Comment:
-Roadmap Versions:
+Roadmap Versions: 1.4.3
Previous Comments:
------------------------------------------------------------------------
[2007-08-10 07:00:14] #c6284055f77a3b28c08
Description:
------------
The @link tag example on
http://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutorial_tags.link.pkg.html
does not work as expected and documented, regarding the {@link URL
inline tag} which does work as expected.
@link URL short description
will not replace the link text "URL" by "short description" but will
append the short description to the URL link text.
Test script:
---------------
<?php
/**
* MySQL Slow Query Log Filter
*
* @category Performance Tools
* @package mysql-log-filter
* @link http://code.google.com/p/mysql-log-filter/ Easily find
MySQL query bottlenecks
*/
/**
* Displays <a href="http://www.example.com">Hello</a>
* @link http://www.example.com Hello
*/
define("TEST_CONSTANT2",3);
?>
Expected result:
----------------
<a href="http://code.google.com/p/mysql-log-filter/">Easily find MySQL
query bottlenecks</a>
...
<a href="http://www.example.com">Hello</a>
Actual result:
--------------
<a
href="http://code.google.com/p/mysql-log-filter/">http://code.google.com/p/mysql-log-filter/
Easily find MySQL query bottlenecks</a>
...
<a href="http://www.example.com">http://www.example.com Hello</a>
------------------------------------------------------------------------