-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy patherror_monerisca.php
More file actions
executable file
·29 lines (27 loc) · 1.14 KB
/
error_monerisca.php
File metadata and controls
executable file
·29 lines (27 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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');
require (AT_INCLUDE_PATH.'header.inc.php');
?>
<h3><?php echo _AT('ec_payment_failed'); ?></h3><br /><br />
<div class="payerrbox">
<?php $msg->printErrors('EC_PAYMENT_FAILED') ?>.
</div><br /><br />
<ul>
<?php print_r($_GET['errorMessage']); ?>
</ul>
<?php
require (AT_INCLUDE_PATH.'footer.inc.php');
?>