Skip to content

Commit

Permalink
Hopefully the paren works
Browse files Browse the repository at this point in the history
  • Loading branch information
vipulnaik committed Dec 19, 2020
1 parent bf389a2 commit 5c0d4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion access-portal/backend/donationNotes.inc
Expand Up @@ -35,7 +35,7 @@ if ($val = $row['donor_retrospective']) {
array_push($notes_pre_key_val_pairs, sprintf("<strong>Donor retrospective of the donation:</strong> %s", trim(cleanNotes($val))));
}
$notes_key_val_pairs = array();
if ($val = $row['intended_funding_timeframe_in_months'] && !($val2 = $row['donor_timing_reason'])) {
if (($val = $row['intended_funding_timeframe_in_months']) && !($val2 = $row['donor_timing_reason'])) {
array_push($notes_key_val_pairs, sprintf("intended funding timeframe in months: %s", $val));
}
if ($val = $row['affected_regions']) {
Expand Down

0 comments on commit 5c0d4ee

Please sign in to comment.