Browse Source

Adding board name to title of catalog theme

pull/107/head
Benjamin Southall 8 years ago
parent
commit
197cd5028c
  1. 3
      templates/themes/catalog/catalog.html
  2. 15
      templates/themes/catalog/theme.php

3
templates/themes/catalog/catalog.html

@ -7,6 +7,7 @@
var active_page = "catalog" var active_page = "catalog"
, board_name = "{{ board }}"; , board_name = "{{ board }}";
</script> </script>
<title>{{ settings.title }} ( /{{ board }}/ )</title>
{% include 'header.html' %} {% include 'header.html' %}
</head> </head>
<body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} theme-catalog active-catalog" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}"> <body class="8chan vichan {% if mod %}is-moderator{% else %}is-not-moderator{% endif %} theme-catalog active-catalog" data-stylesheet="{% if config.default_stylesheet.1 != '' %}{{ config.default_stylesheet.1 }}{% else %}default{% endif %}">
@ -41,7 +42,7 @@
<option value="large">{% trans 'Large' %}</option> <option value="large">{% trans 'Large' %}</option>
</select> </select>
</div> </div>
<br></br>
<div class="threads"> <div class="threads">
<div id="Grid"> <div id="Grid">
{% for post in recent_posts %} {% for post in recent_posts %}

15
templates/themes/catalog/theme.php

@ -15,7 +15,7 @@
// - post-thread (a thread has been made) // - post-thread (a thread has been made)
if ($action === 'all') { if ($action === 'all') {
foreach ($boards as $board) { foreach ($boards as $board) {
$b = new Catalog(); $b = new Catalog($settings);
$action = generation_strategy("sb_catalog", array($board)); $action = generation_strategy("sb_catalog", array($board));
if ($action == 'delete') { if ($action == 'delete') {
@ -27,7 +27,7 @@
} }
} }
} elseif ($action == 'post-thread' || ($settings['update_on_posts'] && $action == 'post') || ($settings['update_on_posts'] && $action == 'post-delete') && in_array($board, $boards)) { } elseif ($action == 'post-thread' || ($settings['update_on_posts'] && $action == 'post') || ($settings['update_on_posts'] && $action == 'post-delete') && in_array($board, $boards)) {
$b = new Catalog(); $b = new Catalog($settings);
$action = generation_strategy("sb_catalog", array($board)); $action = generation_strategy("sb_catalog", array($board));
if ($action == 'delete') { if ($action == 'delete') {
@ -148,10 +148,13 @@
/** /**
* Build and save the HTML of the catalog for the given board * Build and save the HTML of the catalog for the given board
*/ */
public function build($board_name) { public function build($settings, $board_name) {
if (!openBoard($board_name)) { global $config, $board;
error(sprintf(_("Board %s doesn't exist"), $post['board'])); if ($board['uri'] != $board_name) {
} if (!openBoard($board_name)) {
error(sprintf(_("Board %s doesn't exist"), $board_name));
}
}
if (array_key_exists($board_name, $this->threadsCache)) { if (array_key_exists($board_name, $this->threadsCache)) {
$threads = $this->threadsCache[$board_name]; $threads = $this->threadsCache[$board_name];

Loading…
Cancel
Save