Changeset 47 for trunk/Base/Error.php


Ignore:
Timestamp:
Jul 27, 2014, 9:14:56 PM (10 years ago)
Author:
chronos
Message:
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 
        21config.php
         2.project
  • trunk/Base/Error.php

    r42 r47  
    44{
    55  global $Config;
    6  
     6
    77  $Date = date('Y-m-d H:i:s');    // časové razítko položky
    88  $ErrorType = array
     
    2121  );
    2222  $UserErrors = E_ALL;  //E_ERROR | E_WARNING | E_PARSE;
    23  
     23
    2424  if(($UserErrors & $Number))
    2525  {
     
    3232    //$First = array_shift($Backtrace);
    3333    //print_r($First);
    34    
     34
    3535    //array_unshift($Backtrace, $First);
    3636    //array_shift($Backtrace);
     
    4848      if(strlen($Arguments) > 0) $Error .= '('.substr($Arguments, 0, -1).')';
    4949      $Error .= "\n";
    50      
     50
    5151    }
    5252    $Error .= "\n";
     
    6363      '<head>'.
    6464      '<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />'.
    65       '</head><body>'.   
     65      '</head><body>'.
    6666      'Došlo k vnitřní chybě!<br /> O chybě byl uvědoměn správce webu a chybu brzy odstraní.<br /><br />');
    6767      echo('<pre>'.$Error.'</pre><br />');      // V případě ladění chybu i zobraz
    6868      echo('</body></html>');
    6969    }
    70     if((E_ERROR | E_PARSE) & $Number) die(); 
     70    if((E_ERROR | E_PARSE) & $Number) die();
    7171  }
    7272}
    7373
    7474set_error_handler('CustomErrorHandler');
    75 
    76 ?>
Note: See TracChangeset for help on using the changeset viewer.