Fix for file cache on PHP 4.1.2. The text string seems to be passed by
[mediawiki.git] / maintenance / recount.sql
blob93e1024b4f0e44716f523b269dff3ebefb3d0eed
1 -- 
2 -- Recalculate the article count
3 -- 
5 SELECT @foo:=COUNT(*) FROM cur
6   WHERE cur_namespace=0 AND cur_is_redirect=0 AND cur_text like '%[[%';
7 UPDATE site_stats SET ss_good_articles=@foo;