From 99101ba31019e3b19e4cf3feaf163aeffb8a398c Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Thu, 28 Jan 2016 15:05:21 +0900 Subject: [PATCH] Update error message. Missed to include in previous commit 46d4a371054f43fe8aeca14b83ba722adc84ac10 --- ext/session/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/session/session.c b/ext/session/session.c index d5e94b98ba..b7a1611363 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -2106,7 +2106,7 @@ static PHP_FUNCTION(session_regenerate_id) if (PS(mod)->s_open(&PS(mod_data), PS(save_path), PS(session_name)) == FAILURE) { PS(session_status) = php_session_none; - php_error_docref(NULL, E_RECOVERABLE_ERROR, "Failed to create(open) session ID: %s (path: %s)", PS(mod)->s_name, PS(save_path)); + php_error_docref(NULL, E_RECOVERABLE_ERROR, "Failed to open session: %s (path: %s)", PS(mod)->s_name, PS(save_path)); RETURN_FALSE; } -- 2.40.0