1
0
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:
czaks 2015-04-01 18:13:32 +02:00
parent 97e0380d65
commit d14594ce63

View File

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