X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FupdateArticleCount.php;h=1e434eb7ea0e7f275169e3e39b6fc6bb9ee565e1;hb=f80f2646996435ae801a0d808e0e28f9e16a790a;hp=e68184581fa9870b6cd11317c2f8debc76a29b12;hpb=8b13fa81f1f520a8fbf23216558dac5f4942fa37;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/updateArticleCount.php b/maintenance/updateArticleCount.php index e68184581f..1e434eb7ea 100644 --- a/maintenance/updateArticleCount.php +++ b/maintenance/updateArticleCount.php @@ -18,11 +18,12 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * + * @file * @ingroup Maintenance * @author Rob Church */ -require_once( dirname(__FILE__) . '/Maintenance.php' ); +require_once( dirname( __FILE__ ) . '/Maintenance.php' ); class UpdateArticleCount extends Maintenance { @@ -41,9 +42,9 @@ class UpdateArticleCount extends Maintenance { $this->output( "Counting articles..." ); $result = $this->count(); - if( $result !== false ) { + if ( $result !== false ) { $this->output( "found {$result}.\n" ); - if( $this->hasOption( 'update' ) ) { + if ( $this->hasOption( 'update' ) ) { $this->output( "Updating site statistics table... " ); $dbw = wfGetDB( DB_MASTER ); $dbw->update( 'site_stats', array( 'ss_good_articles' => $result ), array( 'ss_row_id' => 1 ), __METHOD__ ); @@ -63,7 +64,7 @@ class UpdateArticleCount extends Maintenance { * @return string */ private function makeNsSet() { - foreach( $this->namespaces as $namespace ) + foreach ( $this->namespaces as $namespace ) $namespaces[] = intval( $namespace ); return implode( ', ', $namespaces ); } @@ -92,7 +93,6 @@ class UpdateArticleCount extends Maintenance { $dbr = wfGetDB( DB_SLAVE ); $res = $dbr->query( $this->makeSql( $dbr ), __METHOD__ ); $row = $dbr->fetchObject( $res ); - $dbr->freeResult( $res ); return $row ? $row->pagecount : false; } }