Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
candrasaputra committed Jan 20, 2022
1 parent 4c11f24 commit 6011c1c
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 6011c1c

Please sign in to comment.