mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-24 15:40:12 +01:00
functions.php fix: after_open_board support; so that we may disable smart_build immediately after open_board
This commit is contained in:
parent
97e0380d65
commit
d14594ce63
@ -469,6 +469,11 @@ function openBoard($uri) {
|
|||||||
$board = getBoardInfo($uri);
|
$board = getBoardInfo($uri);
|
||||||
if ($board) {
|
if ($board) {
|
||||||
setupBoard($board);
|
setupBoard($board);
|
||||||
|
|
||||||
|
if (function_exists('after_open_board')) {
|
||||||
|
after_open_board();
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user