You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
php_error_docref(NULL, E_WARNING, "The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and '-,'");
171
+
php_error_docref(NULL, E_WARNING, "The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and \"-\"");
172
172
return;
173
173
}
174
174
175
175
if (!ps_files_path_create(buf, sizeof(buf), data, key)) {
176
-
php_error_docref(NULL, E_WARNING, "Failed to create session data file path. Too short session ID, invalid save_path or path lentgth exceeds MAXPATHLEN(%d)", MAXPATHLEN);
176
+
php_error_docref(NULL, E_WARNING, "Failed to create session data file path. Too short session ID, invalid save_path or path length exceeds MAXPATHLEN(%d)", MAXPATHLEN);
Copy file name to clipboardExpand all lines: ext/session/tests/016.phpt
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ session_write_close();
22
22
print"I live\n";
23
23
?>
24
24
--EXPECTF--
25
-
Warning: session_start(): Failed to create session data file path. Too short session ID, invalid save_path or path lentgth exceeds MAXPATHLEN(%d) in %s on line 4
25
+
Warning: session_start(): Failed to create session data file path. Too short session ID, invalid save_path or path length exceeds MAXPATHLEN(%d) in %s on line %d
26
26
27
27
Warning: session_start(): Failed to read session data: files (path: 123;:/really%scompletely:::/invalid;;,23123;213) in %s on line 4
0 commit comments