From eba06cf5f87e17fe68ee40206555d0343e0e6a13 Mon Sep 17 00:00:00 2001 From: Sean Burke Date: Thu, 16 Aug 2012 12:04:40 -0700 Subject: [PATCH] Changed default variables and added comments --- inc/setup/_config.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/setup/_config.php b/inc/setup/_config.php index b9a22fd..a90a592 100644 --- a/inc/setup/_config.php +++ b/inc/setup/_config.php @@ -3,11 +3,11 @@ function define_basic() { -define(PRODUCT,'ESCan'); -define(ORGANIZATION, 'The Engineering Student Council'); -define(EMAIL, 'esc.uci@email.com'); -define(WEBSITE, 'http://escan.site90.com/escan'); -define(DESCRIPTION, 'ESCan Description'); +define(PRODUCT,'ESCan'); //Name of Product +define(ORGANIZATION, 'The Engineering Student Council'); //Name of Organization or Company +define(EMAIL, 'esc.uci@email.com'); //Email seen by users when notified +define(WEBSITE, 'http://yoursite.com/'); //url of your site where this application is hosted +define(DESCRIPTION, 'ESCan Description'); //Description of the system }