From 68b073c02a46730b5767dfd2172855ab10e708f7 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sat, 27 Jun 2020 07:29:33 +0300 Subject: [PATCH] Removed path and version global vars --- public/index.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/public/index.php b/public/index.php index c87b14a26e..6c0dfd59c2 100644 --- a/public/index.php +++ b/public/index.php @@ -15,9 +15,4 @@ ini_set('display_errors', 0); // ini_set('display_startup_errors', 1); // error_reporting(E_ALL); -$path = (isset($_GET['q'])) ? explode('/', $_GET['q']) : []; - -array_shift($path); -$version = array_shift($path); - include __DIR__ . '/../app/app.php';