Skip to content

Commit

Permalink
Merge pull request #369 from phoenixdev-kl/master
Browse files Browse the repository at this point in the history
Fixed PHP notice "Undefined variable: aRow"
  • Loading branch information
T-Kuchel authored Sep 2, 2019
2 parents 2a5a60b + 0d645af commit a6ebbfd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ $_colspan = $_colspan > 1 ? 'colspan="' . $_colspan . '"' : '';
?>
<tr id="<?php echo $sId; ?>">
<td>
<input type="text" style="width:60px;" class="input-text required-entry" value="<?php echo $aRow['ratepay_shopid']; ?>" name="groups[template_ratepay][fields][ratepay_config][value][<?php echo $sId; ?>][ratepay_shopid]">
<input type="text" style="width:60px;" class="input-text required-entry" value="" name="groups[template_ratepay][fields][ratepay_config][value][<?php echo $sId; ?>][ratepay_shopid]">
<span class="required">*</span>
</td>
<td>
<input type="text" style="width:60px;" class="input-text required-entry" value="<?php echo $aRow['ratepay_currency']; ?>" name="groups[template_ratepay][fields][ratepay_config][value][<?php echo $sId; ?>][ratepay_currency]">
<input type="text" style="width:60px;" class="input-text required-entry" value="" name="groups[template_ratepay][fields][ratepay_config][value][<?php echo $sId; ?>][ratepay_currency]">
<span class="required">*</span>
</td>
</tr>
Expand Down

0 comments on commit a6ebbfd

Please sign in to comment.