[FIX] Disable Block Explorer Link and Chain Info on mmcFE Theme

This commit is contained in:
nicoschtein 2013-10-08 12:17:41 -03:00
parent 8feadc59a2
commit c8150a7021

View File

@ -11,11 +11,19 @@
</tr>
<tr>
<td class="leftheader">Current Block</td>
<td><a href="http://explorer.litecoin.net/search?q={$CURRENTBLOCK}" target="_new">{$CURRENTBLOCK}</a></td>
{if ! $GLOBAL.website.blockexplorer.disabled}
<td><a href="{$GLOBAL.website.blockexplorer.url}{$CURRENTBLOCKHASH}" target="_new">{$CURRENTBLOCK}</a></td>
{else}
<td>{$CURRENTBLOCK}</td>
{/if}
</tr>
<tr>
<td class="leftheader">Current Difficulty</td>
<td><a href="http://allchains.info/" target="_new">{$DIFFICULTY}</a></td>
{if ! $GLOBAL.website.chaininfo.disabled}
<td><a href="{$GLOBAL.website.chaininfo.url}" target="_new">{$DIFFICULTY}</a></td>
{else}
<td>{$DIFFICULTY}</td>
{/if}
</tr>
</tbody>
</table>