]> granicus.if.org Git - php/commitdiff
MFH: Update the class method documentation links
authorHannes Magnusson <bjori@php.net>
Sat, 29 Dec 2007 02:21:57 +0000 (02:21 +0000)
committerHannes Magnusson <bjori@php.net>
Sat, 29 Dec 2007 02:21:57 +0000 (02:21 +0000)
main/main.c

index efc424e6a60aa51378443b15998f6a5c5df37535..f09b3ebe81252c2ed158bf33142664dfdf714142 100644 (file)
@@ -58,6 +58,7 @@
 #include "php_main.h"
 #include "fopen_wrappers.h"
 #include "ext/standard/php_standard.h"
+#include "ext/standard/php_string.h"
 #include "php_variables.h"
 #include "ext/standard/credits.h"
 #ifdef PHP_WIN32
@@ -650,15 +651,16 @@ PHPAPI void php_verror(const char *docref, const char *params, int type, const c
 
        /* no docref given but function is known (the default) */
        if (!docref && is_function) {
+               int doclen;
                if (space[0] == '\0') {
-                       spprintf(&docref_buf, 0, "function.%s", function);
+                       doclen = spprintf(&docref_buf, 0, "function.%s", function);
                } else {
-                       spprintf(&docref_buf, 0, "function.%s-%s", class_name, function);
+                       doclen = spprintf(&docref_buf, 0, "%s.%s", class_name, function);
                }
                while((p = strchr(docref_buf, '_')) != NULL) {
                        *p = '-';
                }
-               docref = docref_buf;
+               docref = php_strtolower(docref_buf, doclen);
        }
 
        /* we have a docref for a function AND