Changeset 694 for trunk/wifidog-auth/wifidog/classes/MainUI.php
- Timestamp:
- 08/19/05 17:55:16 (8 years ago)
- Files:
-
- 1 modified
-
trunk/wifidog-auth/wifidog/classes/MainUI.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/classes/MainUI.php
r686 r694 283 283 } 284 284 285 /** Display the page */ 285 /** Display the page 286 * @note: Uses a few request parameters to displaty debug information 287 * if $_REQUEST['debug_request'] is present, it will print out the $_REQUEST array at the top of the page */ 286 288 public function display() 287 289 { … … 315 317 316 318 $html .= "<body>"."\n"; 319 if(isset($_REQUEST['debug_request'])) 320 { 321 $html .= '<pre>'; 322 $html .= print_r($_REQUEST,true); 323 $html .= '</pre>'; 324 } 317 325 $html .= '<div class="outer_container">'."\n"; 318 326
