-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed default variables and added comments
- Loading branch information
1 parent
af31598
commit eba06cf
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
|
||
function define_basic() | ||
{ | ||
define(PRODUCT,'ESCan'); | ||
define(ORGANIZATION, 'The Engineering Student Council'); | ||
define(EMAIL, '[email protected]'); | ||
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, '[email protected]'); //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 | ||
} | ||
|
||
|
||
|