Index: branches/new-installer/phase3/includes/installer/WebInstaller.php |
— | — | @@ -236,7 +236,8 @@ |
237 | 237 | */ |
238 | 238 | private function getSessionSavePath() { |
239 | 239 | $path = ini_get( 'session.save_path' ); |
240 | | - $path = substr( $path, strrpos( $path, ';' ) ); |
| 240 | + $path = ltrim( substr( $path, strrpos( $path, ';' ) ), ';'); |
| 241 | + |
241 | 242 | return $path; |
242 | 243 | } |
243 | 244 | |