Jacek Kowalski
2017-08-28 bc710e890d99f522d4adb0fa9bff5b0504a5a036
includes/std.php
@@ -1,7 +1,7 @@
<?php
define('STANDARD', TRUE);
class error {
class errorclass {
   static $time;
   static function add($text) {
      $title = 'Błąd';
@@ -14,7 +14,7 @@
   }
}
error::$time = microtime(TRUE);
errorclass::$time = microtime(TRUE);
function __autoload($class) {
   if($class == 'sql') {
@@ -22,4 +22,4 @@
   }
   require_once('./includes/'.$class.'.php');
}
?>
?>