Fix undefined array key "output" when adding new label

This commit is contained in:
Philip Klempin 2021-10-15 23:05:50 +00:00
parent a936e80630
commit aead30a041
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class Pref_Labels extends Handler_Protected {
function add() {
$caption = clean($_REQUEST["caption"]);
$output = clean($_REQUEST["output"]);
$output = clean($_REQUEST["output"] ?? false);
if ($caption) {
if (Labels::create($caption)) {