diff --git a/public/templates/mpos/dashboard/account_data.tpl b/public/templates/mpos/dashboard/account_data.tpl
index 6af78c57..52a93f0b 100644
--- a/public/templates/mpos/dashboard/account_data.tpl
+++ b/public/templates/mpos/dashboard/account_data.tpl
@@ -5,10 +5,8 @@
{if $GLOBAL.userdata.no_fees}
You are mining without any pool fees applied and
-{else if $GLOBAL.fees > 0 && $GLOBAL.fees < 0.0001}
- You are mining at {$GLOBAL.fees|escape|number_format:"8"}% pool fee and
{else if $GLOBAL.fees > 0}
- You are mining at {$GLOBAL.fees|escape}% pool fee and
+ You are mining at {if $GLOBAL.fees < 0.0001}{$GLOBAL.fees|escape|number_format:"8"}{else}{$GLOBAL.fees|escape}{/if}% pool fee and
{else}
This pool does not apply fees and
{/if}
|