Avoid mixed content warnings by letting Libravatar detect HTTPS connection.
[phorkie.git] / www / www-header.php
index c99f8c8ed774b54610ced1f97d7df067612b6d28..b58bd95ed659306b764ca40b67fc381002e0b756 100644 (file)
@@ -2,20 +2,7 @@
 namespace phorkie;
 session_start();
 
-set_include_path(
-    __DIR__ . '/../src/'
-    . PATH_SEPARATOR . get_include_path()
-);
-spl_autoload_register(
-    function ($class) {
-        $file = str_replace(array('\\', '_'), '/', $class) . '.php';
-        $hdl = @fopen($file, 'r', true);
-        if ($hdl !== false) {
-            fclose($hdl);
-            require $file;
-        }
-    }
-);
+require_once __DIR__ . '/../src/phorkie/autoload.php';
 set_exception_handler(
     function ($e) {
         if ($e instanceof Exception) {