diff options
author | Egon Schmid <eschmid@php.net> | 2000-06-23 17:37:49 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-06-23 17:37:49 +0000 |
commit | d049d4a6bd4cec4d9afc33d3959671d07525206d (patch) | |
tree | 798d115167b2ad069529c571ac743eab2a3035be | |
parent | 10249f2dfbf28359cf0d2a7739a58feae9b81a22 (diff) | |
download | php-git-d049d4a6bd4cec4d9afc33d3959671d07525206d.tar.gz |
Fixed protos.
-rw-r--r-- | ext/session/session.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index cc0096bf42..737b02ff1a 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -907,7 +907,7 @@ PHP_FUNCTION(session_set_cookie_params) } /* }}} */ -/* {{{ proto array session_get_cookie_params() +/* {{{ proto array session_get_cookie_params(void) Return the session cookie parameters */ PHP_FUNCTION(session_get_cookie_params) { @@ -929,7 +929,7 @@ PHP_FUNCTION(session_get_cookie_params) /* }}} */ /* {{{ proto string session_name([string newname]) - Return the current session name. if newname is given, the session name is replaced with newname */ + Return the current session name. If newname is given, the session name is replaced with newname */ PHP_FUNCTION(session_name) { pval **p_name; @@ -953,7 +953,7 @@ PHP_FUNCTION(session_name) /* }}} */ /* {{{ proto string session_module_name([string newname]) - Return the current module name used for accessing session data. if newname is given, the module name is replaced with newname */ + Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname */ PHP_FUNCTION(session_module_name) { pval **p_name; @@ -1018,7 +1018,7 @@ PHP_FUNCTION(session_set_save_handler) /* }}} */ /* {{{ proto string session_save_path([string newname]) - Return the current save path passed to module_name. if newname is given, the save path is replaced with newname */ + Return the current save path passed to module_name. If newname is given, the save path is replaced with newname */ PHP_FUNCTION(session_save_path) { pval **p_name; @@ -1042,7 +1042,7 @@ PHP_FUNCTION(session_save_path) /* }}} */ /* {{{ proto string session_id([string newid]) - Return the current session id. if newid is given, the session id is replaced with newid */ + Return the current session id. If newid is given, the session id is replaced with newid */ PHP_FUNCTION(session_id) { pval **p_name; @@ -1089,7 +1089,7 @@ static void php_register_var(zval** entry PSLS_DC PLS_DC) /* }}} */ -/* {{{ proto bool session_register(mixed var_names [, ...]) +/* {{{ proto bool session_register(mixed var_names [, mixed ...]) Adds varname(s) to the list of variables which are freezed at the session end */ PHP_FUNCTION(session_register) { |