wez             Wed May 26 05:25:52 2004 EDT

  Modified files:              
    /livedocs   livedoc_funcs.php 
  Log:
  Fix overtuning.
  Patch by Jakub Vrana
  # ps: Jakub, please Cc: ilia directly if you spot another thing like this,
  # as he is not subscribed to phpdoc@
  
  
http://cvs.php.net/diff.php/livedocs/livedoc_funcs.php?r1=1.4&r2=1.5&ty=u
Index: livedocs/livedoc_funcs.php
diff -u livedocs/livedoc_funcs.php:1.4 livedocs/livedoc_funcs.php:1.5
--- livedocs/livedoc_funcs.php:1.4      Tue May 25 16:15:03 2004
+++ livedocs/livedoc_funcs.php  Wed May 26 05:25:52 2004
@@ -330,7 +330,7 @@
                $func_name = str_replace('-', '_', $parts[4]);
                $stag = "xref linkend=\"$id\"";
                $etag = "xref";
-       } else if (isset($parts[3])) {
+       } else if (isset($parts[3]) && !isset($parts[4])) {
                $id = 'function.' . $parts[3];
                $func_name = lookup_title($id);
        } else {

Reply via email to