Index: trunk/extensions/ContributionReporting/ContributionReporting.php |
— | — | @@ -242,7 +242,7 @@ |
243 | 243 | $result = $dbr->select( |
244 | 244 | 'public_reporting_fundraisers', |
245 | 245 | 'round( prf_total ) AS total', |
246 | | - 'prf_id' => $myFundraiser['id'], |
| 246 | + array( 'prf_id' => $myFundraiser['id'] ), |
247 | 247 | __METHOD__ |
248 | 248 | ); |
249 | 249 | $row = $dbr->fetchRow( $result ); |
Index: trunk/extensions/ContributionReporting/DailyTotal_body.php |
— | — | @@ -118,7 +118,7 @@ |
119 | 119 | $result = $dbr->select( |
120 | 120 | 'public_reporting_days', |
121 | 121 | 'round( prd_total ) AS total', |
122 | | - 'prd_date' => $today, |
| 122 | + array( 'prd_date' => $today ), |
123 | 123 | __METHOD__ |
124 | 124 | ); |
125 | 125 | $row = $dbr->fetchRow( $result ); |