From 8b88cd9fdffccd9a3c9d9fa36b43e3090ae8bb61 Mon Sep 17 00:00:00 2001 From: Deon George Date: Mon, 14 Jan 2013 15:59:56 +1100 Subject: [PATCH] Fix for missing tmpdir in config --- application/config/config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/config/config.php b/application/config/config.php index 3e7cdeba..59865936 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -40,5 +40,6 @@ return array( 'site_name' => 'Graytech Hosting Pty Ltd', // @todo This should come from the DB 'taxid' => 'ABN: 49 106 229 476', // @todo This should come from the DB 'theme' => 'yaml', // @todo This should be in the DB + 'tmpdir' => '/tmp', ); ?>