Browse Source

Create empty string

Jaap Marcus 3 years ago
parent
commit
a569392fe3
1 changed files with 2 additions and 1 deletions
  1. 2 1
      web/src/app/System/HestiaApp.php

+ 2 - 1
web/src/app/System/HestiaApp.php

@@ -23,7 +23,8 @@ class HestiaApp
             throw new \Exception($errstr);
         }
         $cli_script = '/usr/bin/sudo ' . escapeshellarg($cli_script);
-
+        
+        $cli_arguments = '';
         if (!empty($args) && is_array($args)) {
             foreach ($args as $arg) {
                 $cli_arguments .= escapeshellarg((string)$arg) . ' ';