Changeset 371 for administrace/debug_list.php
- Timestamp:
- Sep 11, 2008, 7:04:23 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
administrace/debug_list.php
r362 r371 43 43 echo('<strong>Uptime:</strong> '.TimeToHumanTime($DbRow['Uptime']).'<br>'); 44 44 echo('<strong>MaxPlayerCount:</strong> '.$DbRow['MaxPlayerCount'].'<br><br>'); 45 echo('<a href="?Id='.$Id.'& Show=Backtrace">Backtrace</a>'.46 ' <a href="?Id='.$Id.'& Show=Log">Mangos log</a>'.47 ' <a href="?Id='.$Id.'& Show=Error">Console error log</a>'.48 ' <a href="?Id='.$Id.'& Show=DbErrors">Database error log</a>'.49 ' <a href="?Id='.$Id.'& Show=Configuration">Mangos configuration</a>'.45 echo('<a href="?Id='.$Id.'&Page='.$Page.'&Show=Backtrace">Backtrace</a>'. 46 ' <a href="?Id='.$Id.'&Page='.$Page.'&Show=Log">Mangos log</a>'. 47 ' <a href="?Id='.$Id.'&Page='.$Page.'&Show=Error">Console error log</a>'. 48 ' <a href="?Id='.$Id.'&Page='.$Page.'&Show=DbErrors">Database error log</a>'. 49 ' <a href="?Id='.$Id.'&Page='.$Page.'&Show=Configuration">Mangos configuration</a>'. 50 50 '<hr>'); 51 51 if(array_key_exists('Show', $_GET)) … … 58 58 for($I = 1; $I < 8; $I++) 59 59 { 60 $Content = str_replace('Thread '.$I , '<hr><strong id="'.$I.'">Thread '.$I.'</strong>', $Content);61 $Content = str_replace($I.' Thread ', '<a href="#'.$I.'"">'.$I.' Thread</a>', $Content);60 $Content = str_replace('Thread '.$I.' ', '<hr><strong id="'.$I.'">Thread '.$I.'</strong>', $Content); 61 $Content = str_replace($I.' Thread ', '<a href="#'.$I.'"">'.$I.' Thread</a>', $Content); 62 62 } 63 63 echo('<strong>Backtrace:</strong> <br><pre>'.$Content.'</pre>');
Note:
See TracChangeset
for help on using the changeset viewer.