Sfoglia il codice sorgente

synchronize catalog_link

pull/47/head^2
czaks 8 anni fa
parent
commit
33ef3f9b01
2 ha cambiato i file con 5 aggiunte e 3 eliminazioni
  1. +2
    -2
      inc/config.php
  2. +3
    -1
      templates/thread.html

+ 2
- 2
inc/config.php Vedi File

@@ -931,8 +931,8 @@
// Show page navigation links at the top as well.
$config['page_nav_top'] = false;

// Show "Catalog" link in page navigation. Use with the Catalog theme.
// $config['catalog_link'] = 'catalog.html';
// Show "Catalog" link in page navigation. Use with the Catalog theme. Set to false to disable.
$config['catalog_link'] = 'catalog.html';

// Board categories. Only used in the "Categories" theme.
// $config['categories'] = array(


+ 3
- 1
templates/thread.html Vedi File

@@ -62,7 +62,9 @@
<span id="thread-links">
<a id="thread-return" href="{{ return }}">[{% trans %}Return{% endtrans %}]</a>
<a id="thread-top" href="#top">[{% trans %}Go to top{% endtrans %}]</a>
<a id="thread-catalog" href="{{ config.root }}{{ board.dir }}{{ config.catalog_link }}">[{% trans %}Catalog{% endtrans %}]</a>
{% if config.catalog_link %}
<a id="thread-catalog" href="{{ config.root }}{{ board.dir }}{{ config.catalog_link }}">[{% trans %}Catalog{% endtrans %}]</a>
{% endif %}
</span>
<span id="thread-quick-reply">


Loading…
Annulla
Salva