Changeset 691 for trunk/pages/ucet.php
- Timestamp:
- Mar 19, 2010, 9:46:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pages/ucet.php
r690 r691 5 5 if(array_key_exists('pass', $_POST)) $pass = $_POST['pass']; else $pass = ''; 6 6 7 if(isset($_POST['login']) and ($_POST['user'] != '') and ($_POST['pass'] != ''))7 function Menu() 8 8 { 9 $player->Login($user, $pass); 10 } else 11 { 9 global $html, $player; 10 12 11 if($player->Check()) 13 12 { … … 40 39 $player->LoginForm(); 41 40 } 41 42 } 43 44 if(isset($_POST['login']) and ($_POST['user'] != '') and ($_POST['pass'] != '')) 45 { 46 $player->Login($user, $pass); 47 Menu(); 48 } else 49 { 50 Menu(); 42 51 } 43 52 $html->PrgStop();
Note:
See TracChangeset
for help on using the changeset viewer.