2020-12-26 01:42:23 +08:00
|
|
|
<?php
|
2021-01-13 19:32:26 +08:00
|
|
|
require "../include/bittorrent.php";
|
2020-12-26 01:42:23 +08:00
|
|
|
dbconn();
|
|
|
|
|
require_once(get_langfile_path());
|
|
|
|
|
|
|
|
|
|
loggedinorreturn();
|
|
|
|
|
stdhead($lang_contactstaff['head_contact_staff'], false);
|
|
|
|
|
begin_main_frame();
|
|
|
|
|
print("<form id=compose method=post name=\"compose\" action=takecontact.php>");
|
2020-12-29 03:02:34 +08:00
|
|
|
if (isset($_GET["returnto"]) && $_GET["returnto"] || $_SERVER["HTTP_REFERER"])
|
|
|
|
|
print("<input type=hidden name=returnto value=\"".(htmlspecialchars($_GET["returnto"] ?? '') ? htmlspecialchars($_GET["returnto"] ?? '') : htmlspecialchars($_SERVER["HTTP_REFERER"] ?? ''))."\">");
|
2020-12-26 01:42:23 +08:00
|
|
|
begin_compose($lang_contactstaff['text_message_to_staff'], "new");
|
|
|
|
|
end_compose();
|
|
|
|
|
print("</form>");
|
|
|
|
|
end_main_frame();
|
|
|
|
|
stdfoot();
|