]> andersk Git - sql-web.git/blob - global.act.php
first stab at 0.2
[sql-web.git] / global.act.php
1 <?php
2
3 require_once('mitsql.lib.php');
4
5 if (isset($i_reset)) { session_destroy(); session_start(); redirect(newQS('reset')); }
6
7 ## SESSION VARS
8
9 $timings = array();
10 $UserId = 0;
11 $Login = sess('Login');
12
13 if (is_a($Login,'Login')) {
14     $UserId = $Login->getUserId();
15         $Name = $Login->getName();
16         $Email = $Login->getEmail();
17         $UL = $Login->getUL();
18 }
19
20 ?>
This page took 0.181196 seconds and 5 git commands to generate.