summaryrefslogtreecommitdiff
path: root/ext/session/session.c
diff options
context:
space:
mode:
authorGraham Campbell <graham@alt-three.com>2016-12-27 19:39:15 +0000
committerNikita Popov <nikic@php.net>2016-12-27 22:01:19 +0100
commit22f3695fe11468d4121f4d39b571fc538e35f8f5 (patch)
treedc7a4d28c85116c37f4674488a581f7fab92d206 /ext/session/session.c
parent1bf67622f893f4159cf8bd647dfcd0906f88e8cf (diff)
downloadphp-git-22f3695fe11468d4121f4d39b571fc538e35f8f5.tar.gz
Fixed typo in "session_module_name"
Diffstat (limited to 'ext/session/session.c')
-rw-r--r--ext/session/session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c
index f005532ddd..9369965e43 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -555,7 +555,7 @@ static PHP_INI_MH(OnUpdateSaveHandler) /* {{{ */
/* "user" save handler should not be set by user */
if (!PS(set_handler) && tmp == ps_user_ptr) {
- php_error_docref(NULL, E_RECOVERABLE_ERROR, "Cannot set 'user' save handler by ini_set() or sesion_module_name()");
+ php_error_docref(NULL, E_RECOVERABLE_ERROR, "Cannot set 'user' save handler by ini_set() or session_module_name()");
return FAILURE;
}