Minor PHPStand warning fix in 'update.php'.

This commit is contained in:
wn_ 2021-11-12 04:51:35 +00:00
parent 763515de79
commit 734be4ebd1
1 changed files with 1 additions and 1 deletions

View File

@ -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") {