functions.php fix: after_open_board support; so that we may disable smart_build immediately after open_board

This commit is contained in:
czaks 2015-04-01 18:13:32 +02:00
parent 55277ce383
commit 14671e0535

View File

@ -475,6 +475,11 @@ function openBoard($uri) {
$board = getBoardInfo($uri);
if ($board) {
setupBoard($board);
if (function_exists('after_open_board')) {
after_open_board();
}
return true;
}
return false;