From ee21315294a8314ad18521595755b6e781b5e719 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?novafacile=20O=C3=9C?=
<43939617+novafacile@users.noreply.github.com>
Date: Thu, 1 Nov 2018 20:20:04 +0100
Subject: [PATCH] bugfix label text for admin interface
On formInputText it didn't show the label name, because of missing quotes and wrong var name
---
bl-kernel/admin/themes/booty/init.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bl-kernel/admin/themes/booty/init.php b/bl-kernel/admin/themes/booty/init.php
index 2859f202..23ca733b 100644
--- a/bl-kernel/admin/themes/booty/init.php
+++ b/bl-kernel/admin/themes/booty/init.php
@@ -262,7 +262,7 @@ EOF;
$label = '';
if (isset($args['label'])) {
- $label = '';
+ $label = '';
}
$class = 'form-control';