From b8cc7930217760f0630d536d848a073efb22e1c8 Mon Sep 17 00:00:00 2001 From: "Michael D. Reiley" Date: Sat, 8 Oct 2011 12:55:56 -0700 Subject: [PATCH] Forgot a global in boardTitle function. --- inc/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/functions.php b/inc/functions.php index 95f1216f..b38613b8 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -226,6 +226,7 @@ } function boardTitle($uri) { + global $config; if($config['cache']['enabled'] && ($board = cache::get('board_' . $uri))) { return $board['title']; }