Merge branch 'bootstrap' of github.com:MPOS/php-mpos into bootstrap

This commit is contained in:
Sebastian Grewe 2014-03-25 10:04:45 +01:00
commit 577f9adfb4

View File

@ -21,7 +21,11 @@
{if $NEWMINT >= 0}
<tr>
<td>Liquid Assets</td>
{if $GLOBAL.config.getbalancewithunconfirmed}
<td>{($BALANCE - $LOCKED - $UNCONFIRMED + $NEWMINT|default:"0")|number_format:"8"}</td>
{else}
<td>{($BALANCE - $LOCKED + $NEWMINT|default:"0")|number_format:"8"}</td>
{/if}
</tr>
<tr>
<td>PoS New Mint</td>
@ -30,7 +34,11 @@
{else}
<tr>
<td>Liquid Assets</td>
{if $GLOBAL.config.getbalancewithunconfirmed}
<td>{($BALANCE - $LOCKED - $UNCONFIRMED)|number_format:"8"}</td>
{else}
<td>{($BALANCE - $LOCKED)|number_format:"8"}</td>
{/if}
</tr>
{/if}
</table>