Author Topic: Trade Centre and Bank links  (Read 1762 times)

Offline Guard

Trade Centre and Bank links
« on: December 09, 2007, 07:43:52 am »
Bug: the Trade Centre and Bank links in the shop dont go bold when clicked
Something to do with this ?

Shop.template.php O0
Code: [Select]
// Allowed to access the bank?
if (allowedTo('shop_bank'))
echo '
', ($context['shop_do'] == 'bank' ? '<b>' : '') . ($modSettings['shopBankEnabled']) ? '<a href="' . $scripturl . '?action=shop;do=bank">' . $txt['shop_bank'] . '</a><br />' : '', ($context['shop_do'] == 'bank' ? '</b>' : '');

// Allowed to access the trade centre?
if (allowedTo('shop_trade'))
echo '
', ($context['shop_do'] == 'trade' ? '<b>' : '') . ($modSettings['shopTradeEnabled']) ? '<a href="' . $scripturl . '?action=shop;do=trade">' . $txt['shop_trade'] . '</a><br />' : '', ($context['shop_do'] == 'trade' ? '</b>' : '');

Offline Daniel15

Re: Trade Centre and Bank links
« Reply #1 on: December 09, 2007, 06:27:47 pm »
Very interesting.,.. It should be working, but it's not. I'll try to take a look into this.