1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

Skip reason is now printed if session.save_path is not writable.

This commit is contained in:
Shein Alexey
2011-06-09 08:18:49 +00:00
parent 25adf56921
commit 3b37e152c3
+1 -1
View File
@@ -18,7 +18,7 @@ if ($save_path) {
$save_path = substr($save_path, ++$p);
}
if (!@is_writable($save_path)) {
die("skip\n");
die("skip session.save_path $save_path is not writable\n");
}
}
}