Skip to content

Commit

Permalink
Fix a PHP error
Browse files Browse the repository at this point in the history
Toward #39.
  • Loading branch information
waldoj committed Jan 7, 2018
1 parent e61ca2b commit 2d36282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron/summaries_new.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
* Look up the bill ID for this bill number.
*/
$bill_id = $bills[strtolower($summary{number})];
if (is_empty($bill_id))
if (empty($bill_id))
{
$log->put('Summary found for '. $summary['number']
. ', but we have no record of that bill.', 2);
Expand Down

0 comments on commit 2d36282

Please sign in to comment.