Skip to content

Commit

Permalink
Fixed PHP notice "Undefined variable: aRow in .../app/design/adminhtm…
Browse files Browse the repository at this point in the history
…l/default/default/template/payone/core/system/config/form/field/ratepay_shopids.phtml on line 53"
  • Loading branch information
phoenixdev-kl committed Sep 2, 2019
1 parent 2a5a60b commit 0d645af
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 0d645af

Please sign in to comment.