Index: trunk/phase3/includes/filerepo/backend/FSFileBackend.php |
— | — | @@ -43,7 +43,7 @@ |
44 | 44 | // Remove any possible trailing slash from directories |
45 | 45 | |
46 | 46 | if ( isset( $config['basePath'] ) ) { |
47 | | - rtrim( $this->basePath, '/' ); // remove trailing slash |
| 47 | + $this->basePath = rtrim( $config['basePath'], '/' ); // remove trailing slash |
48 | 48 | } else { |
49 | 49 | $this->basePath = null; // none; containers must have explicit paths |
50 | 50 | } |