0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
[
Home
]
File: tiki-contact.php
<?php // $Id: /cvsroot/tikiwiki/tiki/tiki-contact.php,v 1.25.2.5 2008-02-14 11:10:14 sylvieg Exp $ // Copyright (c) 2002-2007, 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 ('tiki-setup.php'); include_once ('lib/messu/messulib.php'); include_once ('lib/userprefs/scrambleEmail.php'); // This feature needs both 'feature_contact' and 'feature_messages' to work if ($prefs['feature_contact'] != 'y') { $smarty->assign('msg', tra('This feature is disabled').': feature_contact'); $smarty->display('error.tpl'); die; } if ($prefs['feature_messages'] != 'y') { $smarty->assign('msg', tra('This feature is disabled').': feature_messages'); $smarty->display('error.tpl'); die; } if ($prefs['contact_anon'] != 'y' && !$user) { $smarty->assign('msg', 'You are not logged in'); $smarty->display('error.tpl'); die; } $smarty->assign('mid', 'tiki-contact.tpl'); $email = $userlib->get_user_email($prefs['contact_user']); if ($email == '') $email = $userlib->get_admin_email(); $email = scrambleEmail($email, $tikilib->get_user_preference('admin', "email is public")); $smarty->assign('email', $email); if ($user == '' and $prefs['contact_anon'] == 'y') { $smarty->assign('sent', 0); if (isset($_REQUEST['send'])) { check_ticket('contact'); $message = ''; // Validation: // must have a subject or body non-empty (or both) if (empty($_REQUEST['subject']) && empty($_REQUEST['body'])) { $smarty->assign('message', tra('ERROR: you must include a subject or a message at least')); $smarty->assign('priority', $_REQUEST['priority']); $smarty->display("tiki.tpl"); die; } if ($prefs['feature_antibot'] == 'y') { if((!isset($_SESSION['random_number']) || $_SESSION['random_number'] != $_REQUEST['antibotcode'])) { $smarty->assign('message',tra("You have mistyped the anti-bot verification code; please try again.")); $smarty->assign('errortype', 'no_redirect_login'); if (!empty($_REQUEST['subject'])) $smarty->assign_by_ref('subject', $_REQUEST['subject']); if (!empty($_REQUEST['body'])) $smarty->assign_by_ref('body', $_REQUEST['body']); if (!empty($_REQUEST['priority'])) $smarty->assign_by_ref('priority', $_REQUEST['priority']); $smarty->display("tiki.tpl"); die; } } $smarty->assign('sent', 1); $messulib->post_message($prefs['contact_user'], 'Anonymous', $_REQUEST['to'], '', $_REQUEST['subject'], $_REQUEST['body'], $_REQUEST['priority']); $message = tra('Message sent to'). ': ' . $prefs['contact_user'] . '<br />'; $smarty->assign('message', $message); } } if ($user and $prefs['feature_messages'] == 'y' and $tiki_p_messages == 'y') { $smarty->assign('sent', 0); if (isset($_REQUEST['send'])) { check_ticket('contact'); $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')); $smarty->display("tiki.tpl"); die; } $smarty->assign('sent', 1); $message = tra('Message sent to'). ': ' . $prefs['contact_user'] . '<br />'; $messulib->post_message($prefs['contact_user'], $user, $_REQUEST['to'], '', $_REQUEST['subject'], $_REQUEST['body'], $_REQUEST['priority']); $smarty->assign('message', $message); } } $smarty->assign('priority', 3); ask_ticket('contact'); $smarty->display("tiki.tpl"); ?>