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
|
<?php
// $Header: /cvsroot/bitweaver/_bit_messages/contact.php,v 1.1 2005/06/19 04:56:31 bitweaver Exp $
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// Initialization
require_once( '../bit_setup_inc.php' );
include_once( MESSU_PKG_PATH.'messu_lib.php' );
if (!$user) {
$smarty->assign('msg', tra("You are not logged in"));
$gBitSystem->display( 'error.tpl' );
die;
}
if ($feature_contact != 'y') {
$smarty->assign('msg', tra("This feature is disabled").": feature_contact");
$gBitSystem->display( 'error.tpl' );
die;
}
$gBitSystem->display( 'bitpackage:messu/contact.tpl');
$email = $userlib->get_user_email($contact_user);
$smarty->assign('email', $email);
if ($user and $feature_messages == 'y' and $bit_p_messages == 'y') {
$smarty->assign('sent', 0);
if (isset($_REQUEST['send'])) {
$smarty->assign('sent', 1);
$message = '';
// Validation:
// must have a subject or body non-empty (or both)
if (empty($_REQUEST['subject']) && empty($_REQUEST['body'])) {
$smarty->assign('message', tra('ERROR: Either the subject or body must be non-empty'));
die;
}
$message = tra('Message sent to'). ':' . $contact_user . '<br/>';
$messulib->post_message($contact_user, $user, $_REQUEST['to'],
'', $_REQUEST['subject'], $_REQUEST['body'], $_REQUEST['priority']);
$smarty->assign('message', $message);
}
}
$smarty->assign('priority', 3);
?>
|