r17533 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r17532‎ | r17533 | r17534 >
Date:12:43, 11 November 2006
Author:brion
Status:old
Tags:
Comment:
woops
Modified paths:
  • /trunk/phase3/maintenance/parserTests.inc (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/parserTests.inc
@@ -953,7 +953,7 @@
954954 select count(*) as c from $testitem as prev
955955 where prev.ti_run=$prevRun and
956956 prev.ti_success $prevStatus and
957 - (select current.ti_success from testitem as current
 957+ (select current.ti_success from $testitem as current
958958 where current.ti_run=$curRun
959959 and prev.ti_name=current.ti_name) $curStatus";
960960 } else {
@@ -961,7 +961,7 @@
962962 select count(*) as c from $testitem as current
963963 where current.ti_run=$curRun and
964964 current.ti_success $curStatus and
965 - (select prev.ti_success from testitem as prev
 965+ (select prev.ti_success from $testitem as prev
966966 where prev.ti_run=$prevRun
967967 and prev.ti_name=current.ti_name) $prevStatus";
968968 }