Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -219,12 +219,6 @@ |
220 | 220 | $wgAddGroups['bureaucrat'][] = 'reviewer'; |
221 | 221 | $wgRemoveGroups['bureaucrat'][] = 'reviewer'; |
222 | 222 | |
223 | | -# If you want to use a storage group specifically for this |
224 | | -# software, set this array |
225 | | -# FIXME: this feature creates orphan blobs in the external storage table when |
226 | | -# Special:RevisionReview updates a revision. It should not be used. |
227 | | -$wgFlaggedRevsExternalStore = false; |
228 | | - |
229 | 223 | # Show reviews in recentchanges? Disabled by default, often spammy... |
230 | 224 | $wgFlaggedRevsLogInRC = false; |
231 | 225 | |
Index: trunk/extensions/FlaggedRevs/FlaggedRevs.class.php |
— | — | @@ -7,7 +7,6 @@ |
8 | 8 | protected static $loaded = false; |
9 | 9 | protected static $qualityVersions = false; |
10 | 10 | protected static $pristineVersions = false; |
11 | | - protected static $extStorage = false; |
12 | 11 | protected static $includeVersionCache = array(); |
13 | 12 | |
14 | 13 | public static function load() { |
— | — | @@ -50,13 +49,6 @@ |
51 | 50 | self::$pristineVersions = true; |
52 | 51 | } |
53 | 52 | |
54 | | - # FIXME: Special:RevisionReview creates orphan blobs when existing reviews |
55 | | - # are updated. Disabling this feature for now. -- TS |
56 | | - #global $wgFlaggedRevsExternalStore, $wgDefaultExternalStore; |
57 | | - #self::$extStorage = $wgFlaggedRevsExternalStore ? |
58 | | - # $wgFlaggedRevsExternalStore : $wgDefaultExternalStore; |
59 | | - self::$extStorage = false; |
60 | | - |
61 | 53 | self::$loaded = true; |
62 | 54 | } |
63 | 55 | |
— | — | @@ -79,15 +71,6 @@ |
80 | 72 | self::load(); |
81 | 73 | return self::$pristineVersions; |
82 | 74 | } |
83 | | - |
84 | | - /** |
85 | | - * Get external storage array. Default to main storage. |
86 | | - * @returns mixed (array/false) |
87 | | - */ |
88 | | - public static function getExternalStorage() { |
89 | | - self::load(); |
90 | | - return self::$extStorage; |
91 | | - } |
92 | 75 | |
93 | 76 | /** |
94 | 77 | * Should this be using a simple icon-based UI? |