From bdc4a92a2a36d871fa77a94176dd8d5d143eb5ef Mon Sep 17 00:00:00 2001 From: Blake Bourque Date: Tue, 22 May 2012 21:01:54 -0300 Subject: [PATCH] Needed to require the config file, for the configGet() function to be found. --- Installer/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Installer/install.php b/Installer/install.php index 11a2161..2eac625 100644 --- a/Installer/install.php +++ b/Installer/install.php @@ -12,6 +12,7 @@ define("INSTALL_LOCK_FILE", $lockfile_base_dir . "/InstallerFinished_" . str_replace(' ', '_', INSTALLER_PROJECT) ); require 'lib/common.php'; + require_once 'lib/config.php'; $result = installerInit();