-
Notifications
You must be signed in to change notification settings - Fork 6
/
message.php
69 lines (64 loc) · 2.4 KB
/
message.php
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/***************************************************************************
* copyright : (C) 2008 - 2013 WeBid
* site : http://www.webidsupport.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; either version 2 of the License, or
* (at your option) any later version. Although none of the code may be
* sold. If you have been sold this script, get a refund.
***************************************************************************/
define('ErrorPage', 1);
include 'common.php';
if (isset($_SESSION['msg_title']) && isset($_SESSION['msg_body']))
{
$title = $_SESSION['msg_title'];
$body = $_SESSION['msg_body'];
}
elseif ($user->logged_in && $user->user_data['suspended'] == 7)
{
$title = $MSG['753'];
$body = $MSG['754'];
}
elseif ($user->logged_in && $user->user_data['suspended'] == 6)
{
$query = "SELECT a.title, a.id FROM " . $DBPrefix . "auctions a
LEFT JOIN " . $DBPrefix . "winners w ON (w.auction = a.id)
WHERE w.bf_paid = 0 AND w.winner = " . $user->user_data['id'];
$res = mysql_query($query);
$system->check_mysql($res, $query, __LINE__, __FILE__);
$auction_data = mysql_fetch_assoc($res);
$title = $MSG['753'];
$url = $system->SETTINGS['siteurl'] . 'pay.php?a=6&auction_id=' . $auction_data['id'];
$body = sprintf($MSG['777'], $auction_data['title'], $url);
}
elseif ($user->logged_in && $user->user_data['suspended'] == 5)
{
$query = "SELECT a.title, a.id FROM " . $DBPrefix . "auctions a
LEFT JOIN " . $DBPrefix . "winners w ON (w.auction = a.id)
WHERE w.ff_paid = 0 AND w.seller = " . $user->user_data['id'];
$res = mysql_query($query);
$system->check_mysql($res, $query, __LINE__, __FILE__);
$auction_data = mysql_fetch_assoc($res);
$title = $MSG['753'];
$url = $system->SETTINGS['siteurl'] . 'pay.php?a=7&auction_id=' . $auction_data['id'];
$body = sprintf($MSG['796'], $auction_data['title'], $url);
}
else
{
header('location: index.php');
exit;
}
$template->assign_vars(array(
'TITLE_MESSAGE' => $title,
'BODY_MESSAGE' => $body
));
include 'header.php';
$template->set_filenames(array(
'body' => 'message.tpl'
));
$template->display('body');
include 'footer.php';
?>