Jacek Kowalski
2017-08-28 adfb2d2afab2b017db7006fcb7808d66aa2ef411
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');
}
?>
?>