]> granicus.if.org Git - php/commitdiff
Update error message. Missed to include in previous commit 46d4a371054f43fe8aeca14b83...
authorYasuo Ohgaki <yohgaki@php.net>
Thu, 28 Jan 2016 06:05:21 +0000 (15:05 +0900)
committerYasuo Ohgaki <yohgaki@php.net>
Thu, 28 Jan 2016 06:06:55 +0000 (15:06 +0900)
ext/session/session.c

index d5e94b98ba484f8ef192409d659a54735b152b10..b7a1611363dae8486e0ef7ac134c508d77d84579 100644 (file)
@@ -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;
        }