diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-05-24 15:01:09 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-05-24 15:01:09 -0700 |
commit | d69c19b7a138659962d3c20c2487f4f13da997c5 (patch) | |
tree | 2300eaa3ed16fd31b8e844df72bb49434298a2e8 /htdocs/src/config.inc.php | |
parent | a1bbd6bfb8dd3812c70acdeff793cd9d78bdc219 (diff) |
Working on email validation
Diffstat (limited to 'htdocs/src/config.inc.php')
-rw-r--r-- | htdocs/src/config.inc.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/htdocs/src/config.inc.php b/htdocs/src/config.inc.php index 1ca6808..f1308b6 100644 --- a/htdocs/src/config.inc.php +++ b/htdocs/src/config.inc.php @@ -16,12 +16,14 @@ $CONFIG = array( 'dbname' => 'p4scommunity', // Site Information - 'sitetitle' => 'Foursquare Community', + 'sitetitle' => 'Foursquare Community', + 'email_from' => 'community@myfoursquarechurch.com', + 'urlroot' => 'http://localhost/~jesse/p4s/community/htdocs', - 'root' => '/Users/jesse/Development/P4Square/community/htdocs', - 'debug' => true, + 'debug' => true, + 'production' => false, ); set_include_path(get_include_path() . PATH_SEPARATOR . $CONFIG['root'].'/src'); |