functions.php fix: after_open_board support; so that we may disable smart_build immediately after open_board
This commit is contained in:
parent
55277ce383
commit
14671e0535
@ -475,6 +475,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