diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-05-13 01:00:15 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-05-13 01:00:15 -0700 |
commit | 0761f76cc24350c4391efc981e49a9ad9828a94d (patch) | |
tree | 587532e8dbdb4f400c8ac74d3dd8049def23f3cc /do.php | |
parent | 136ce85b66802c663264d5d10ccc6e58efec7059 (diff) | |
download | pathery-0761f76cc24350c4391efc981e49a9ad9828a94d.tar.xz |
Many PHP warnings/notices fixes.
Diffstat (limited to 'do.php')
-rw-r--r-- | do.php | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -285,8 +285,9 @@ if ($_GET['r'] == 'getpath') { // ---------- CLOSING THE SESSION $_SESSION WILL NO LONGER WORK FOR WRITING
session_write_close();
//Now that is done, we can easily do whatever we want - Like, send any emails that there might be.
- include_once('./includes/emails.php');
- SendQueuedEmail();
+ //TODO: Move to process.php!
+ //include_once('./includes/emails.php');
+ //SendQueuedEmail();
$json['error'][] = 'user is logged in';
// --------- USER LOGGED IN
|