-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathresponse_user.php
More file actions
23 lines (21 loc) · 1009 Bytes
/
response_user.php
File metadata and controls
23 lines (21 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/************************************************************************/
/* ATutor */
/************************************************************************/
/* Copyright (c) 2002 - 2013 */
/* ATutorSpaces */
/* https://atutorspaces.com */
/* This program is free software. You can redistribute it and/or */
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/************************************************************************/
$_user_location = 'users';
define('AT_INCLUDE_PATH', '../../include/');
require(AT_INCLUDE_PATH.'vitals.inc.php');
require('include/payments.lib.php');
mirapay_authenticate_user_response();
unset($_SESSION['payment_id']);
unset($_SESSION['seats_requested']);
header('Location: index.php');
exit;
?>