go.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
- <?php
- // +-------------------------------------------------------------+
- // | DeskPRO v [2.0.1 Production]
- // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
- // | Supplied by WTN-WDYL
- // | Nullified by WTN-WDYL
- // | Distribution via WebForum, ForumRU and associated file dumps
- // +-------------------------------------------------------------+
- // | DESKPRO IS NOT FREE SOFTWARE
- // +-------------------------------------------------------------+
- // | License ID : Full Enterprise License =) ...
- // | License Owner : WTN-WDYL Team
- // +-------------------------------------------------------------+
- // | $RCSfile: go.php,v $
- // | $Date: 2004/02/10 01:34:28 $
- // | $Revision: 1.6 $
- // +-------------------------------------------------------------+
- // | File Details:
- // | - Redirector for home page selections
- // +-------------------------------------------------------------+
- error_reporting(E_ALL ^ E_NOTICE);
- include "./../global.php";
- // globalise variables
- $global = array (
- array('id')
- );
- rg($global);
- if ($_REQUEST['own_tickets_submit']) {
- $url = $_REQUEST['own_ticket'];
- } elseif ($_REQUEST['other_tickets_submit']) {
- $url = $_REQUEST['other_ticket'];
- } elseif ($_REQUEST['new_tickets_submit']) {
- $url = $_REQUEST['new_ticket'];
- } elseif ($_REQUEST['messages_submit']) {
- $url = $_REQUEST['messages'];
- } elseif ($_REQUEST['watches_submit']) {
- $url = $_REQUEST['watches'];
- } elseif ($_REQUEST['odwatches_submit']) {
- $url = $_REQUEST['odwatches'];
- } elseif ($_REQUEST['tasks_submit']) {
- $url = $_REQUEST['tasks'];
- } elseif ($_REQUEST['odtasks_submit']) {
- $url = $_REQUEST['odtasks'];
- } elseif ($_REQUEST['faqs_submit']) {
- $url = $_REQUEST['faqs'];
- } elseif ($_REQUEST['run_saved']) {
- $url = $_REQUEST['saved_search'] . "&save_search_op=Run";
- }
- if (!$url) {
- $url = 'main.php';
- $message = 'Nothing selected.';
- } else {
- $message = 'Viewing selection...';
- }
- jump($url, $message);