1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-18 03:37:35 +01:00

Forgot a global in boardTitle function.

This commit is contained in:
Michael D. Reiley 2011-10-08 12:55:56 -07:00
parent b3471fcc72
commit bdbc1db038

View File

@ -226,6 +226,7 @@
}
function boardTitle($uri) {
global $config;
if($config['cache']['enabled'] && ($board = cache::get('board_' . $uri))) {
return $board['title'];
}