From: Michael Wallner Date: Tue, 7 Mar 2006 15:08:57 +0000 (+0000) Subject: - fix proto *static* HttpQueryString::singleton() X-Git-Tag: RELEASE_1_0_0RC1~10 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=5e46af3d4f9091d2c88922ae38bf142b0f0b59b5;hp=2d31adababe7af92c0153f8eff813c582c3d566c;p=m6w6%2Fext-http - fix proto *static* HttpQueryString::singleton() --- diff --git a/docs/functions.html b/docs/functions.html index 2f7668e..9063679 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -623,7 +623,7 @@ Operates on and modifies $_GET and $_SERVER['QUERY_STRING'] if global is TRUE.

string HttpQueryString::set(mixed params)

Set query string entry/entries. NULL values will unset the variable.

-

HttpQueryString HttpQueryString::singleton([bool global = true])

+

static HttpQueryString HttpQueryString::singleton([bool global = true])

Get a single instance (differentiates between the global setting).

bool HttpQueryString::xlate(string ie, string oe)

Converts the query string from the source encoding ie to the target encoding oe.
@@ -1400,7 +1400,7 @@ http.cache_log is set.

-

Generated at: Tue, 07 Mar 2006 15:57:21 +0100

+

Generated at: Tue, 07 Mar 2006 16:07:37 +0100

diff --git a/http_querystring_object.c b/http_querystring_object.c index 79f1b64..d7d3000 100644 --- a/http_querystring_object.c +++ b/http_querystring_object.c @@ -475,7 +475,7 @@ PHP_METHOD(HttpQueryString, set) /* }}} */ #ifndef WONKY -/* {{{ proto HttpQueryString HttpQueryString::singleton([bool global = true]) +/* {{{ proto static HttpQueryString HttpQueryString::singleton([bool global = true]) * * Get a single instance (differentiates between the global setting). */