[BUG][2.8.1] The market cannot delete related quotes

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • linia 106 do 115 w page.market.tpl

    <div class="market_button">
    {if $row.time_off > $timestamp}
    <a href="?page=market&mode=cancel_lot&id={$row.id}"><button type="button" class="button_red">{$LNG.market_take}</button>
    </a>
    {else}
    <button type="button" class="button_dark_blue">{$LNG.market_take}</button>


    {/if}
    </div>
    zamień na to
  • SAAS wrote:

    linia 106 do 115 w page.market.tpl

    <div class="market_button">
    {if $row.time_off > $timestamp}
    <a href="?page=market&mode=cancel_lot&id={$row.id}"><button type="button" class="button_red">{$LNG.market_take}</button>
    </a>
    {else}
    <button type="button" class="button_dark_blue">{$LNG.market_take}</button>


    {/if}
    </div>
    zamień na to
    emmm I made a slight modification
    Original:

    Source Code

    1. ?page=market&mode=cancel_lot&$id={$row.id}


    After modification:


    Source Code

    1. ?page=market&mode=cancel_lot&id={$row.id}

    The post was edited 1 time, last by Aerry ().