Changeset 72 for trunk/www/Application/View/Debug.php
- Timestamp:
- Aug 23, 2009, 6:37:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Application/View/Debug.php
r69 r72 28 28 function ShowListOnRow($Row) 29 29 { 30 $Row['Time'] = '<a href="? Action=DebugView&Id='.$Row['Id'].'&Show=Backtrace">'.str_replace(' ', ' ', $Row['Time']).'</a>';30 $Row['Time'] = '<a href="?Module=Debug&Action=View&Id='.$Row['Id'].'&Show=Backtrace">'.str_replace(' ', ' ', $Row['Time']).'</a>'; 31 31 $Row['Uptime'] = TimeToHumanTime($Row['Uptime']); 32 32 return($Row); … … 69 69 70 70 $MangosDebug = new MangosDebug($this->Database, $this->System); 71 $Form = new Form($this-> ItemFormClass);71 $Form = new Form($this->System, $this->ItemFormClass); 72 72 if($Form->LoadValuesFromDatabase($_GET['Id'])) 73 73 { … … 75 75 $Output .= $Form->ShowTable(); 76 76 77 $Output .= '<a href="? Action=DebugView&Id='.$_GET['Id'].'&Show=Backtrace">Backtrace</a>'.78 ' <a href="? Action=DebugView&Id='.$_GET['Id'].'&Show=Log">Mangos log</a>'.79 ' <a href="? Action=DebugView&Id='.$_GET['Id'].'&Show=Error">Console error log</a>'.80 ' <a href="? Action=DebugView&Id='.$_GET['Id'].'&Show=DbErrors">Database error log</a>'.81 ' <a href="? Action=DebugView&Id='.$_GET['Id'].'&Show=Configuration">Mangos configuration</a>'.77 $Output .= '<a href="?Module=Debug&Action=View&Id='.$_GET['Id'].'&Show=Backtrace">Backtrace</a>'. 78 ' <a href="?Module=Debug&Action=View&Id='.$_GET['Id'].'&Show=Log">Mangos log</a>'. 79 ' <a href="?Module=Debug&Action=View&Id='.$_GET['Id'].'&Show=Error">Console error log</a>'. 80 ' <a href="?Module=Debug&Action=View&Id='.$_GET['Id'].'&Show=DbErrors">Database error log</a>'. 81 ' <a href="?Module=Debug&Action=View&Id='.$_GET['Id'].'&Show=Configuration">Mangos configuration</a>'. 82 82 '<hr>'; 83 83 if(array_key_exists('Show', $_GET))
Note:
See TracChangeset
for help on using the changeset viewer.