Application startup code cleaup.
[fa-stable.git] / index.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         $path_to_root=".";
13         $page_security = 1;
14         ini_set('xdebug.auto_trace',1);
15         include_once("includes/session.inc");
16
17         if (!isset($_SESSION["App"]))
18                 $_SESSION["App"] = new front_accounting();
19         $app = &$_SESSION["App"];
20         if (isset($_GET['application']))
21                 $app->selected_application = $_GET['application'];
22
23         $app->display();
24         context_reset();
25 ?>