From b2766e5d881270409ce6cf3ca3f286bb11994eb1 Mon Sep 17 00:00:00 2001 From: System Void Date: Tue, 4 Aug 2015 14:44:55 +0100 Subject: [PATCH] Removed double space that was not needed. Saving bytes, that's all! --- web/login/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/login/index.php b/web/login/index.php index cdb98b397..62541b043 100644 --- a/web/login/index.php +++ b/web/login/index.php @@ -14,7 +14,7 @@ include($_SERVER['DOCUMENT_ROOT']."/inc/main.php"); // Login as someone else if (isset($_SESSION['user'])) { - if ($_SESSION['user'] == 'admin' && !empty($_GET['loginas'])) { + if ($_SESSION['user'] == 'admin' && !empty($_GET['loginas'])) { exec (VESTA_CMD . "v-list-user ".escapeshellarg($_GET['loginas'])." json", $output, $return_var); if ( $return_var == 0 ) { $data = json_decode(implode('', $output), true);