Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -222,6 +222,8 @@ |
223 | 223 | |
224 | 224 | # If you want to use a storage group specifically for this |
225 | 225 | # software, set this array |
| 226 | +# FIXME: this feature creates orphan blobs in the external storage table when |
| 227 | +# Special:RevisionReview updates a revision. It should not be used. |
226 | 228 | $wgFlaggedRevsExternalStore = false; |
227 | 229 | |
228 | 230 | # Show reviews in recentchanges? Disabled by default, often spammy... |
Index: trunk/extensions/FlaggedRevs/FlaggedRevs.class.php |
— | — | @@ -49,10 +49,14 @@ |
50 | 50 | if( $wgFlaggedRevValues >= $wgFlaggedRevPristine ) { |
51 | 51 | self::$pristineVersions = true; |
52 | 52 | } |
53 | | - global $wgFlaggedRevsExternalStore, $wgDefaultExternalStore; |
54 | | - self::$extStorage = $wgFlaggedRevsExternalStore ? |
55 | | - $wgFlaggedRevsExternalStore : $wgDefaultExternalStore; |
56 | 53 | |
| 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 | + |
57 | 61 | self::$loaded = true; |
58 | 62 | } |
59 | 63 | |