Changeset 371


Ignore:
Timestamp:
Sep 11, 2008, 7:04:23 AM (16 years ago)
Author:
george
Message:
  • Opraveno: Stránkování seznamu ladících logů.
Location:
administrace
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • administrace/debug_list.php

    r362 r371  
    4343    echo('<strong>Uptime:</strong> '.TimeToHumanTime($DbRow['Uptime']).'<br>');
    4444    echo('<strong>MaxPlayerCount:</strong> '.$DbRow['MaxPlayerCount'].'<br><br>');
    45     echo('<a href="?Id='.$Id.'&amp;Show=Backtrace">Backtrace</a>'.
    46       '  <a href="?Id='.$Id.'&amp;Show=Log">Mangos log</a>'.
    47       '  <a href="?Id='.$Id.'&amp;Show=Error">Console error log</a>'.
    48       '  <a href="?Id='.$Id.'&amp;Show=DbErrors">Database error log</a>'.
    49       '  <a href="?Id='.$Id.'&amp;Show=Configuration">Mangos configuration</a>'.
     45    echo('<a href="?Id='.$Id.'&amp;Page='.$Page.'&amp;Show=Backtrace">Backtrace</a>'.
     46      '  <a href="?Id='.$Id.'&amp;Page='.$Page.'&amp;Show=Log">Mangos log</a>'.
     47      '  <a href="?Id='.$Id.'&amp;Page='.$Page.'&amp;Show=Error">Console error log</a>'.
     48      '  <a href="?Id='.$Id.'&amp;Page='.$Page.'&amp;Show=DbErrors">Database error log</a>'.
     49      '  <a href="?Id='.$Id.'&amp;Page='.$Page.'&amp;Show=Configuration">Mangos configuration</a>'.
    5050      '<hr>');
    5151    if(array_key_exists('Show', $_GET))
     
    5858          for($I = 1; $I < 8; $I++)
    5959          {
    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);
    6262          }
    6363          echo('<strong>Backtrace:</strong> <br><pre>'.$Content.'</pre>');
  • administrace/process_log.php

    r366 r371  
    11<?php
    22
    3 chdir('/var/www/wow/administrace/');
    43include('global.php');
    54
Note: See TracChangeset for help on using the changeset viewer.