1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

ParserFunctions: Change {{NUMBEROFPAGES}} to read from site_stats.ss_total_pages and {{NUMBEROFARTICLES}} to read from site_stats.ss_good_articles

This commit is contained in:
gnosygnu
2016-11-09 15:10:47 -05:00
parent 7e5af96548
commit 88332f68a2
3 changed files with 4 additions and 4 deletions

View File

@@ -43,8 +43,8 @@ public class Xowd_site_stats_tbl implements Db_tbl {
try {
if (rdr.Move_next()) {
stats.Load_by_db
( rdr.Read_long(fld_good_articles)
, rdr.Read_long(fld_total_pages)
( rdr.Read_long(fld_total_pages)
, rdr.Read_long(fld_good_articles)
, rdr.Read_int(fld_images)
, 0, 0, 0, 0, 0);
}