[Mediawiki-l] Test snapshot for MediaWiki 1.6.0

Thomas Klein tkl-online at gmx.de
Tue Apr 4 14:49:59 UTC 2006


The file "patch-ss_images.sql" is wrong.

The wrong file:
ALTER TABLE /*$wgDBprefix*/site_stats ADD ss_images int(10) default '0';
SELECT @images := COUNT(*) FROM /*$wgDBprefix*/image;
UPDATE site_stats SET ss_images=@images;

The is correct:
ALTER TABLE /*$wgDBprefix*/site_stats ADD ss_images int(10) default '0';
SELECT @images := COUNT(*) FROM /*$wgDBprefix*/image;
UPDATE /*$wgDBprefix*/site_stats SET ss_images=@images;
 
Thomas Klein



More information about the MediaWiki-l mailing list