Changeset 206 for Dev/trunk/classes
- Timestamp:
- 01/06/12 10:16:30 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/SessionEditorWidget.php
r201 r206 88 88 89 89 public function LoadSession() { // Initialize variables on page load. 90 90 // Redirect if no session is set 91 91 if (!isset($_SESSION['currentSession'])) { 92 92 redirect("selectSession.php"); … … 94 94 // Store the current session in internal variable 95 95 $results = $this->dbi->get("Session", array("uid"=> $_SESSION['currentSession'])); 96 print_r($results); 96 97 if (!empty($results)) { 97 98 if ($results[0]->evaluate()) {
Note: See TracChangeset
for help on using the changeset viewer.