diff --git a/inc/config.php b/inc/config.php index a05d81ed..8fa55c8a 100644 --- a/inc/config.php +++ b/inc/config.php @@ -1481,7 +1481,7 @@ // Mod links (full HTML). $config['mod']['link_delete'] = '[D]'; - $config['mod']['link_shadow_delete'] = '[ShD]'; + $config['mod']['link_force_shadow_delete'] = '[ShD]'; $config['mod']['link_warning'] = '[W]'; $config['mod']['link_warningdelete'] = '[W&D]'; $config['mod']['link_ban'] = '[B]'; diff --git a/templates/post/post_controls.html b/templates/post/post_controls.html index c1da730a..09d1c2c7 100644 --- a/templates/post/post_controls.html +++ b/templates/post/post_controls.html @@ -5,7 +5,7 @@ {% if mod|hasPermission(config.mod.delete, board.uri) %} {{ secure_link_confirm(config.mod.link_delete, 'Delete'|trans, 'Are you sure you want to delete this?'|trans, board.dir ~ 'delete/' ~ post.id) }}  {% if mod|hasPermission(config.mod.auto_delete_shadow_post, board.uri) %} - {{ secure_link_confirm(config.mod.link_shadow_delete, 'Shadow Delete'|trans, 'Are you sure you want to shadow delete this?'|trans, board.dir ~ 'delete_shadow/' ~ post.id) }}  + {{ secure_link_confirm(config.mod.link_force_shadow_delete, 'Shadow Delete'|trans, 'Are you sure you want to shadow delete this?'|trans, board.dir ~ 'delete_shadow/' ~ post.id) }}  {% endif %} {% endif %} {% if mod|hasPermission(config.mod.deletebyip, board.uri) %}