Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge all configuration files of 2-advanced #153

Merged
merged 9 commits into from
Aug 17, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update register.php
  • Loading branch information
devplanete committed Aug 17, 2013
commit edf59e56b03c07897866ea5b94ed148e9409d573
14 changes: 3 additions & 11 deletions 2-advanced/register.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,12 @@
require_once("libraries/password_compatibility_library.php");
}

// include the configs / constants for the database connection
require_once("config/db.php");
// include the config
require_once("config/config.php");

// include the hashing cost factor (you can delete this line if you have never touched the cost factor,
// the script will then use the standard value)
require_once("config/hashing.php");

// include the PHPMailer library & the mail configs
require_once("config/email.php");
// include the PHPMailer library
require_once("libraries/PHPMailer.php");

// include the configs / constants for the verification URL
require_once("config/email_verification.php");

//load the registration class
require_once("classes/Registration.php");

Expand Down