1 Aug 2004 03:57
phase3/includes OutputPage.php, 1.159, 1.160 SpecialAllmessages.php, 1.8, 1.9 SpecialContributions.php, 1.29, 1.30 SpecialValidate.php, 1.18, 1.19 Skin.php, 1.235, 1.236
Timwi <timwi <at> users.sourceforge.net>
2004-08-01 01:57:29 GMT
2004-08-01 01:57:29 GMT
Update of /cvsroot/wikipedia/phase3/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32122/includes Modified Files: OutputPage.php SpecialAllmessages.php SpecialContributions.php SpecialValidate.php Skin.php Log Message: Since nobody commented on this, I assume all the changes are OK (http://mail.wikipedia.org/pipermail/wikitech-l/2004-July/011789.html) Use wfMsg's own replacement functionality instead of str_replace ( "$1", ... ) Index: SpecialContributions.php =================================================================== RCS file: /cvsroot/wikipedia/phase3/includes/SpecialContributions.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** SpecialContributions.php 31 Jul 2004 15:14:55 -0000 1.29 --- SpecialContributions.php 1 Aug 2004 01:57:26 -0000 1.30 *************** *** 147,151 **** $val = new Validation ; $val = $val->countUserValidations ( $id ) ; ! $val = str_replace ( "$1" , $val , wfMsg ( 'val_user_validations' ) ) ; $wgOut->addHTML( $val ); } --- 147,151 ---- $val = new Validation ; $val = $val->countUserValidations ( $id ) ; ! $val = wfMsg ( 'val_user_validations', $val ) ;(Continue reading)
RSS Feed