no need for position:absolute
[lhc/web/wiklou.git] / maintenance / recount.sql
index 93e1024..2bf4a7f 100644 (file)
@@ -2,7 +2,7 @@
 -- Recalculate the article count
 -- 
 
-SELECT @foo:=COUNT(*) FROM cur
+SELECT @foo:=COUNT(*) FROM /*$wgDBprefix*/cur
   WHERE cur_namespace=0 AND cur_is_redirect=0 AND cur_text like '%[[%';
-UPDATE site_stats SET ss_good_articles=@foo;
+UPDATE /*$wgDBprefix*/site_stats SET ss_good_articles=@foo;