[0004904] Customer Credit Note: fixed invalid inventory GL postings for service items.
[fa-stable.git] / access / timeout.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 /*
13         User authentication page popped up after login timeout during ajax call.
14 */
15 $path_to_root = '..';
16 $page_security = 'SA_OPEN';
17 include_once($path_to_root . "/includes/session.inc");
18
19 include($path_to_root .'/access/login.php');
20
21 if (get_post('SubmitUser') && $_SESSION['wa_current_user']->logged_in()) {
22         // After successfull login repeat last ajax call.
23         // Login form consists all post variables from last ajax call.
24 echo "<script>
25         var o = opener;
26         if (o) {
27                 o.JsHttpRequest.request(document.getElementsByName('SubmitUser')[0], o.document.forms[0]);
28                 close();
29         }
30 </script>";
31 }