home *** CD-ROM | disk | FTP | other *** search
- <?php
- ////////////////////////////////////////////////////////////////////////////////
- // <!--Copyright (c) 2005 Pure Networks Inc. All rights reserved.-->
- ////////////////////////////////////////////////////////////////////////////////
- //
- // Build: 3.0.6121.0 (Stable)
- // $Revision: #1 $
- //
- require '_util.php';
- session_start();
- if (is_user_logged_on() == 0) // not logged in that is...
- {
- // code in here will determine if the system is authorized to allow use of RA
- // Do we have an error code to pass along?
- if (isset($_GET['errorcode']))
- {
- gotoAbs('/login' . $_GET['errorcode']);
- exit();
- }
- else
- {
- gotoAbs('/folders/public');
- exit();
- }
- }
- else
- {
- goto_logged_in_url();
- }
- ?>