Browse Source

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

pull/40/head
czaks 9 years ago
parent
commit
14671e0535
  1. 5
      inc/functions.php

5
inc/functions.php

@ -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;

Loading…
Cancel
Save