Skip to content

Commit 42479bf

Browse files
authored
Merge pull request #6 from lairdshaw/fix-5
Fix #5: Template not cached
2 parents e1495d2 + 6e1f8b7 commit 42479bf

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

root/inc/plugins/opcanclosethread.php

+12
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
}
2525

2626
if (!defined('IN_ADMINCP')) {
27+
$plugins->add_hook('global_start' , 'opcanclosethread_hookin__global_start' );
2728
$plugins->add_hook('showthread_end' , 'opcanclosethread_hookin__showthread_end' );
2829
$plugins->add_hook('newthread_end' , 'opcanclosethread_hookin__newthread_or_newreply_end' );
2930
$plugins->add_hook('newreply_end' , 'opcanclosethread_hookin__newthread_or_newreply_end' );
@@ -286,6 +287,17 @@ function opcanclosethread_deactivate() {
286287
find_replace_templatesets('showthread', '(\\{\\$opcct_btn\\})', '', 0);
287288
}
288289

290+
function opcanclosethread_hookin__global_start() {
291+
if (THIS_SCRIPT == 'showthread.php') {
292+
global $templatelist;
293+
294+
if (!empty($templatelist) && my_substr($templatelist, -1) != ',') {
295+
$templatelist .= ",";
296+
}
297+
$templatelist .= 'opcanclosethread_openclose_button';
298+
}
299+
}
300+
289301
function opcct_is_applicable_forum($fid) {
290302
global $mybb;
291303

0 commit comments

Comments
 (0)