Index: trunk/phase3/includes/filerepo/backend/FSFileBackend.php |
— | — | @@ -51,7 +51,7 @@ |
52 | 52 | if( isset( $config['containerPaths'] ) ) { |
53 | 53 | $this->containerPaths = (array)$config['containerPaths']; |
54 | 54 | foreach ( $this->containerPaths as &$path ) { |
55 | | - rtrim( $path, '/' ); // remove trailing slash |
| 55 | + $path = rtrim( $path, '/' ); // remove trailing slash |
56 | 56 | } |
57 | 57 | } |
58 | 58 | |