From 055d81d433d6f39fc75f402a6c6ae21f947070d4 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 4 Feb 2012 11:28:35 -0800 Subject: [PATCH] BUGFIX: fixed missing include in update_db.php --- update_db.php | 1 + 1 file changed, 1 insertion(+) diff --git a/update_db.php b/update_db.php index c40f89a..1efac63 100644 --- a/update_db.php +++ b/update_db.php @@ -22,6 +22,7 @@ error_reporting(E_ALL); include_once("config.php"); /* needs to be first in list, since other includes use this */ include_once("./include/db.php"); /* database only */ +include_once("./include/output.php"); /* the rest */ include_once("./include/functions.php"); /* the rest */ /* make sure that user has set all variables in config.php */ -- 2.25.1