From 73ef79925a33324d70aa56aaead6f54b598aa4c4 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 7 Feb 2013 20:33:38 -0800 Subject: [PATCH] [ExternalStore] Made ExternalStoreMwstore use private containers. Change-Id: Ice87446b9d3a8d178f0fda10ba606d60089d76d4 --- includes/externalstore/ExternalStoreMwstore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/externalstore/ExternalStoreMwstore.php b/includes/externalstore/ExternalStoreMwstore.php index 8e0adda5c3..0911cca100 100644 --- a/includes/externalstore/ExternalStoreMwstore.php +++ b/includes/externalstore/ExternalStoreMwstore.php @@ -62,7 +62,7 @@ class ExternalStoreMwstore extends ExternalStoreMedium { $url = $be->getContainerStoragePath( 'data' ) . '/' . rawurlencode( $wiki ) . "/{$rand[0]}/{$rand[1]}/{$rand[2]}/{$id}"; - $be->prepare( array( 'dir' => dirname( $url ) ) ); + $be->prepare( array( 'dir' => dirname( $url ), 'noAccess' => 1, 'noListing' => 1 ) ); if ( $be->create( array( 'dst' => $url, 'content' => $data ) )->isOK() ) { return $url; } -- 2.20.1