Skip to content
Snippets Groups Projects
view.php 886 B
Newer Older
  • Learn to ignore specific revisions
  • /*********************************************************************
        view.php
    
        Ticket View.
    
        Peter Rotich <peter@osticket.com>
        Copyright (c)  2006-2010 osTicket
        http://www.osticket.com
    
        Released under the GNU General Public License WITHOUT ANY WARRANTY.
        See LICENSE.TXT for details.
    
        vim: expandtab sw=4 ts=4 sts=4:
        $Id: $
    **********************************************************************/
    
    require_once('client.inc.php');
    
    
    // Try autologin the user
    // Authenticated user can be of type ticket owner or collaborator
    $errors = array();
    
    if (isset($_GET['auth']) || isset($_GET['t']))
        $user =  UserAuthenticationBackend::processSignOn($errors);
    
    
    if ($user && $user->getTicketId())
        Http::redirect('tickets.php?id='.$user->getTicketId());
    
    
    //Simply redirecting to tickets.php until multiview is implemented.
    
    require('tickets.php');
    ?>