Index: trunk/extensions/FlaggedRevs/FlaggedRevs.php |
— | — | @@ -209,8 +209,7 @@ |
210 | 210 | 'uniqueContentPages' => 12, # $wgContentNamespaces unique pages edited |
211 | 211 | 'editComments' => 50, # how many edit comments used? |
212 | 212 | 'email' => false, # user must be emailconfirmed? |
213 | | - 'userpage' => false, # user must have a userpage? |
214 | | - 'userpageBytes' => 100, # if userpage is needed, what is the min size? |
| 213 | + 'userpageBytes' => 0, # userpage is needed? with what min size? |
215 | 214 | 'uniqueIPAddress' => false, # If $wgPutIPinRC is true, users sharing IPs won't be promoted |
216 | 215 | 'neverBlocked' => true, # Can users that were blocked be promoted? |
217 | 216 | 'maxRevertedEdits' => 5, # Max edits the user could have had rolled back? |
Index: trunk/extensions/FlaggedRevs/FlaggedRevs.hooks.php |
— | — | @@ -931,7 +931,7 @@ |
932 | 932 | } |
933 | 933 | } |
934 | 934 | # See if the page actually has sufficient content... |
935 | | - if( $wgFlaggedRevsAutopromote['userpage'] ) { |
| 935 | + if( $wgFlaggedRevsAutopromote['userpageBytes'] > 0 ) { |
936 | 936 | if( !$user->getUserPage()->exists() ) { |
937 | 937 | wfProfileOut( __METHOD__ ); |
938 | 938 | return true; |