Index: trunk/extensions/FlaggedRevs/specialpages/ValidationStatistics_body.php |
— | — | @@ -80,6 +80,8 @@ |
81 | 81 | foreach ( $namespaces as $namespace ) { |
82 | 82 | $row = $this->db->selectRow( 'flaggedrevs_stats', '*', |
83 | 83 | array( 'namespace' => $namespace ) ); |
| 84 | + if( !$row ) continue; // NS added to config recently? |
| 85 | + |
84 | 86 | $NsText = $wgContLang->getFormattedNsText( $row->namespace ); |
85 | 87 | $NsText = $NsText ? $NsText : wfMsgHTML( 'blanknamespace' ); |
86 | 88 | |