Ignore:
Timestamp:
Apr 14, 2015, 10:20:16 PM (9 years ago)
Author:
chronos
Message:
  • Removed: Spaces on end of line.
  • Modified: Tabs converted to spaces.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Error/Error.php

    r682 r738  
    3232  function DoStart()
    3333  {
    34         $this->ShowError = $this->System->Config['Web']['ShowPHPError'];
     34    $this->ShowError = $this->System->Config['Web']['ShowPHPError'];
    3535    set_error_handler(array($this, 'ErrorHandler'));
    3636    set_exception_handler(array($this, 'ExceptionHandler'));
     
    3939  function Stop()
    4040  {
    41         restore_error_handler();
    42         restore_exception_handler();
    43         parent::Stop();
     41    restore_error_handler();
     42    restore_exception_handler();
     43    parent::Stop();
    4444  }
    4545
     
    128128          '<meta http-equiv="Content-Type" content="text/html; charset='.$this->Encoding.'"></head><body>'."\n".
    129129          'Došlo k vnitřní chybě!<br/> O chybě byl uvědoměn správce webu a chybu brzy odstraní.<br/><br/>');
    130         echo('<pre>'.$Error.'</pre><br/>');                     // V případě ladění chybu i zobraz
     130        echo('<pre>'.$Error.'</pre><br/>');     // V případě ladění chybu i zobraz
    131131        echo('</body></html>');
    132132      } else
    133133      {
    134         echo($Error);
     134        echo($Error);
    135135      }
    136136    }
Note: See TracChangeset for help on using the changeset viewer.