Format cleanup, small display fix in taxes/tax_type.php
[fa-stable.git] / index.php
1 <?php
2         $path_to_root=".";
3         
4         $page_security = 1;
5         include_once("frontaccounting.php");
6         include_once("includes/session.inc");
7         if (!isset($_SESSION["App"]))
8                 $_SESSION["App"] = new front_accounting();
9         $app = &$_SESSION["App"];
10         if (isset($_GET['application']))
11                 $app->selected_application = $_GET['application'];
12         $app->display();
13 ?>