diff --git a/ui/ui/user-activation-list.tpl b/ui/ui/user-activation-list.tpl
index 4af579d5..e0a4542e 100644
--- a/ui/ui/user-activation-list.tpl
+++ b/ui/ui/user-activation-list.tpl
@@ -24,7 +24,7 @@
{$ds['username']} |
{$ds['plan_name']} |
- {number_format($ds['price'],2,$_c['dec_point'],$_c['thousands_sep'])} |
+ {Lang::moneyFormat($ds['price'])} |
{$ds['type']} |
{date($_c['date_format'], strtotime($ds['recharged_on']))} |
{date($_c['date_format'], strtotime($ds['expiration']))}
diff --git a/ui/ui/user-orderHistory.tpl b/ui/ui/user-orderHistory.tpl
index 97c4dcc2..c4f717f1 100644
--- a/ui/ui/user-orderHistory.tpl
+++ b/ui/ui/user-orderHistory.tpl
@@ -28,7 +28,7 @@
| {$ds['gateway']} |
{$ds['routers']} |
{$ds['payment_channel']} |
- {number_format($ds['price'],2,$_c['dec_point'],$_c['thousands_sep'])} |
+ {Lang::moneyFormat($ds['price'])} |
{date("{$_c['date_format']} H:i",
strtotime($ds['created_date']))} |
{date("{$_c['date_format']} H:i",
diff --git a/ui/ui/user-orderPlan.tpl b/ui/ui/user-orderPlan.tpl
index 2bd2fa7c..6315baad 100644
--- a/ui/ui/user-orderPlan.tpl
+++ b/ui/ui/user-orderPlan.tpl
@@ -5,33 +5,35 @@
-
-
-
- {foreach $plans_balance as $plan}
-
-
-
-
-
-
-
- {Lang::T('Price')} |
- {Lang::moneyFormat($plan['price'])} |
-
-
-
-
-
- Buy
+ {if $_c['enable_balance'] == 'yes'}
+
+
+
+ {foreach $plans_balance as $plan}
+
+
+
+
+
+
+
+ {Lang::T('Price')} |
+ {Lang::moneyFormat($plan['price'])} |
+
+
+
+
+
-
- {/foreach}
+ {/foreach}
+
-
+ {/if}
{foreach $routers as $router}
diff --git a/update.php b/update.php
index ae8deb1a..f3b778fd 100644
--- a/update.php
+++ b/update.php
@@ -242,7 +242,7 @@ function deleteFolder($path)
- Step 3
+ Step 4
Updating database...
|