Skip to content

Commit

Permalink
Merge pull request #22 from xendit/TPI-6170/fix-opencart2.3
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
IreneGohtami authored Jan 26, 2022
2 parents 26986f4 + 6011c1c commit 416e428
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
<div class="row">
<?php if ($environment == 'test') { ?>
<div class="col-md-12">
<p class="test_instructions"><? echo $text_test_instructions; ?></p>
<p class="test_instructions"><?php echo $text_test_instructions; ?></p>
</div>
<?php } ?>
<div class="col-md-12">
<p class="instructions"><? echo $text_instructions; ?></p>
<p class="instructions"><?php echo $text_instructions; ?></p>
</div>
</div>

<input
type="hidden"
id="invoice-hash"
name="invoice-hash"
value="<? echo $invoice_hash; ?>"
value="<?php echo $invoice_hash; ?>"
/>

<div class="buttons">
<div class="pull-right">
<input
type="button"
value="<? echo $button_confirm; ?>"
value="<?php echo $button_confirm; ?>"
id="button-confirm"
data-loading-text="<? echo $text_loading; ?>"
data-loading-text="<?php echo $text_loading; ?>"
class="btn btn-primary"
/>
</div>
Expand Down

0 comments on commit 416e428

Please sign in to comment.