diff --git a/inc/config.php b/inc/config.php
index b5178fc4..80f3c01f 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -1223,7 +1223,8 @@
// $config['font_awesome'] is false (default).
// $config['image_sticky'] = 'static/sticky.png';
// $config['image_locked'] = 'static/locked.gif';
- // $config['image_bumplocked'] = 'static/sage.png'.
+ // $config['image_bumplocked'] = 'static/sage.png';
+ // $config['image_cycled'] = 'static/cycled.png';
// If you want to put images and other dynamic-static stuff on another (preferably cookieless) domain.
// This will override $config['root'] and $config['dir']['...'] directives. "%s" will get replaced with
diff --git a/inc/instance-config.php b/inc/instance-config.php
index a30dd9ac..4b66f15f 100644
--- a/inc/instance-config.php
+++ b/inc/instance-config.php
@@ -122,6 +122,9 @@ $config['mod']['rawhtml'] = MOD;
$config['mod']['mod_board_log'] = MOD;
$config['mod']['ip_recentposts'] = 350;
+// Allow everyone to see bumplocks
+$config['mod']['view_bumplock'] = -1;
+
$config['allow_thread_deletion'] = false;
// Max attachments per post
diff --git a/post.php b/post.php
index 48f7ab90..dfa42cd4 100644
--- a/post.php
+++ b/post.php
@@ -1374,7 +1374,7 @@ function handle_post(){
query('INSERT INTO ``cites`` VALUES ' . implode(', ', $insert_rows)) or error(db_error());
}
- if (!$post['op'] && strtolower($post['email']) != 'sage' && !$thread['sage'] && ($config['reply_limit'] == 0 || $numposts['replies']+1 < $config['reply_limit'])) {
+ if (!$post['op'] && strtolower($post['email']) != 'sage' && !$thread['sage'] && ($config['reply_limit'] == 0 || $numposts['replies'] < $config['reply_limit'])) {
bumpThread($post['thread']);
}
diff --git a/templates/post_thread.html b/templates/post_thread.html
index 6b114f6b..448bbd72 100644
--- a/templates/post_thread.html
+++ b/templates/post_thread.html
@@ -21,28 +21,28 @@
{% if config.font_awesome %}
{% else %}
-
+
{% endif %}
{% endif %}
{% if post.locked %}
{% if config.font_awesome %}
{% else %}
-
+
{% endif %}
{% endif %}
- {% if post.bumplocked and (config.mod.view_bumplock < 0 or (post.mod and post.mod|hasPermission(config.mod.view_bumplock, board.uri))) %}
+ {% if post.sage and (config.mod.view_bumplock < 0 or (post.mod and post.mod|hasPermission(config.mod.view_bumplock, board.uri))) %}
{% if config.font_awesome %}
{% else %}
-
+
{% endif %}
{% endif %}
{% if post.cycle %}
{% if config.font_awesome %}
{% else %}
-
+
{% endif %}
{% endif %}
{% if index %}
diff --git a/templates/themes/catalog/catalog.html b/templates/themes/catalog/catalog.html
index cfee935f..128b3187 100644
--- a/templates/themes/catalog/catalog.html
+++ b/templates/themes/catalog/catalog.html
@@ -70,7 +70,7 @@
id="img-{{ post.id }}" data-subject="{% if post.subject %}{{ post.subject|e }}{% endif %}" data-name="{{ post.name|e }}" data-muhdifference="{{ post.muhdifference }}" class="{{post.board}} thread-image" title="{{post.bump|date('%b %d %H:%M')}}">