]> andersk Git - sql-web.git/blame - global.act.php
first stab at 0.2
[sql-web.git] / global.act.php
CommitLineData
997305cf
JP
1<?php
2
3require_once('mitsql.lib.php');
4
5if (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
13if (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.050522 seconds and 5 git commands to generate.