Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beginnings of code update/overhaul replaced some constants with variables #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deposit.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function show_deposit_voucher_form($code = '')

<div class='content_box'>
<h3><?php printf(_("Deposit %s"), CURRENCY); ?></h3>
<strong><p>How should the user deposit PP?</p></strong>
<strong><p>How should the user deposit <?php echo CURRENCY; ?>?</p></strong>
<p>Is there an API? Or should we just have the user fill in a form with:<ul><li>forum username</li><li>forum password</li><li>amount to transfer</li></p>
<p>
<?php
Expand Down
2 changes: 1 addition & 1 deletion view_request.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function display_request_info_fiat($reqid)
$row = mysql_fetch_assoc($result);
if (!$row)
return;
echo "<p>PP Account Name: {$row['name']}</p>\n";
echo "<p>".CURRENCY." Account Name: {$row['name']}</p>\n";
// echo "<p>Bank: {$row['bank']}</p>\n";
// echo "<p>Account number: {$row['acc_num']}</p>\n";
// echo "<p>Sort code: {$row['sort_code']}</p>\n";
Expand Down
2 changes: 1 addition & 1 deletion withdraw.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<p><?php echo _("We charge no fee for withdrawals."); ?></p>
<p>
<form action='' class='indent_form' method='post'>
<label for='input_name_holder'><?php echo _("PP Account Name"); ?></label>
<label for='input_name_holder'><?php printf(_("%s Account Name"), CURRENCY); ?></label>
<input type='text' id='input_name_holder' name='name_holder' maxlength='18' />

<label for='input_amount'><?php echo _("Amount"); ?></label>
Expand Down