*use 'infinity' as pr_expiry
authorAaron Schulz <aaron@users.mediawiki.org>
Thu, 3 May 2007 15:39:43 +0000 (15:39 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Thu, 3 May 2007 15:39:43 +0000 (15:39 +0000)
maintenance/updateRestrictions.php

index 610a590..ad4c380 100644 (file)
@@ -25,7 +25,7 @@ function migrate_page_restrictions( $db ) {
        $end = $db->selectField( 'page', 'MAX(page_id)', false, __FUNCTION__ );
        $blockStart = $start;
        $blockEnd = $start + BATCH_SIZE - 1;
-       $encodedExpiry = Block::decodeExpiry('');
+       $encodedExpiry = 'infinity';
        while ( $blockEnd <= $end ) {
                $cond = "page_id BETWEEN $blockStart AND $blockEnd AND page_restrictions !='' AND page_restrictions !='edit=:move='";
                $res = $db->select( 'page', array('page_id', 'page_restrictions'), $cond, __FUNCTION__ );