Avoid mixed content warnings by letting Libravatar detect HTTPS connection.
[phorkie.git] / www / www-header.php
index ef948e458782faa42996269236ab1c93618c71d5..b58bd95ed659306b764ca40b67fc381002e0b756 100644 (file)
@@ -2,18 +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';
-        if (stream_resolve_include_path($file)) {
-            require $file;
-        }
-    }
-);
+require_once __DIR__ . '/../src/phorkie/autoload.php';
 set_exception_handler(
     function ($e) {
         if ($e instanceof Exception) {