From 48efbfd4af4d708db356989bac1e0e675f8afa80 Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Mon, 18 Mar 2019 19:26:07 -0400 Subject: [PATCH] reformatting and comment --- includes/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/functions.php b/includes/functions.php index 6a15519..f62053c 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -600,7 +600,7 @@ function SaveTORAndVPNConfig(){ } elseif( isset($_POST['StartLokinet']) ) { echo "Attempting to start Lokinet"; exec( 'lokinet', $return ); - location.reload(); +// location.reload(); } } elseif( isset($_POST['StopLokinet']) ) { echo "Attempting to stop Lokinet"; @@ -610,12 +610,12 @@ function SaveTORAndVPNConfig(){ } elseif( isset($_POST['GenerateLokinet']) ) { echo "Attempting to generate Lokinet"; exec( 'lokinet -g', $return ); - location.reload(); + // location.reload(); } } elseif( isset($_POST['ReGenerateLokinet']) ) { echo "Attempting to regenerate Lokinet"; exec( 'lokinet -g', $return ); - location.reload(); + // location.reload(); } } }