diff options
author | Arun Persaud <arun@nubati.net> | 2012-02-04 11:28:35 -0800 |
---|---|---|
committer | Arun Persaud <apersaud@lbl.gov> | 2012-02-04 11:28:35 -0800 |
commit | 055d81d433d6f39fc75f402a6c6ae21f947070d4 (patch) | |
tree | c549b17b5c3870a7964b2ae19b69f157a8b0e471 | |
parent | 95231cf6650d277fc13f5c0e1c1a0e1bb9c30edb (diff) | |
download | e-DoKo-055d81d433d6f39fc75f402a6c6ae21f947070d4.tar.gz e-DoKo-055d81d433d6f39fc75f402a6c6ae21f947070d4.tar.bz2 e-DoKo-055d81d433d6f39fc75f402a6c6ae21f947070d4.zip |
BUGFIX: fixed missing include in update_db.php
-rw-r--r-- | update_db.php | 1 |
1 files changed, 1 insertions, 0 deletions
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 */ |