Commit:    a936545385f898f6aeff83cd27b7d9b0156b5af0
Author:    Levi Morrison <[email protected]>         Wed, 26 Jun 2013 12:52:12 -0600
Parents:   7f5d6a70f87712ec6e5e52975e21f039d62e7ec4
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=a936545385f898f6aeff83cd27b7d9b0156b5af0

Log:
Fixed bug #65107: Paamayim Nekudotayim rendering as ')'.

Bugs:
https://bugs.php.net/65107

Changed paths:
  M  include/shared-manual.inc


Diff:
diff --git a/include/shared-manual.inc b/include/shared-manual.inc
index 6f56225..a564a1d 100644
--- a/include/shared-manual.inc
+++ b/include/shared-manual.inc
@@ -577,7 +577,7 @@ function manual_setup_beta($setup) {
     foreach($setup["toc"] as $entry) {
         // We strip out any class prefix here, we only want method names
         $methodname = $entry[1];
-        if(strpos($entry[1], '::') !== false) {
+        if(strpos($entry[1], '::') !== false && strpos($entry[1], ' ') === 
false) {
             list($classname, $methodname) = explode('::', $entry[1]);
         }
         $siblings[] = array(


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to