From 734be4ebd1dd7732d413bb69df33ac4e33460a5e Mon Sep 17 00:00:00 2001 From: wn_ Date: Fri, 12 Nov 2021 04:51:35 +0000 Subject: [PATCH] Minor PHPStand warning fix in 'update.php'. --- update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.php b/update.php index 6cd61a451..d62825b98 100755 --- a/update.php +++ b/update.php @@ -97,7 +97,7 @@ ]; foreach (PluginHost::getInstance()->get_commands() as $command => $data) { - $options_map[$command . $data["suffix"]] = [ $data["arghelp"] ?? "", $data["description"] ]; + $options_map[$command . $data["suffix"]] = [ $data["arghelp"], $data["description"] ]; } if (php_sapi_name() != "cli") {