bugfix label text for admin interface

On formInputText it didn't show the label name, because of missing quotes and wrong var name
このコミットが含まれているのは:
novafacile OÜ 2018-11-01 20:20:04 +01:00 committed by GitHub
コミット ee21315294
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23

ファイルの表示

@ -262,7 +262,7 @@ EOF;
$label = '';
if (isset($args['label'])) {
$label = '<label for="$id" class="col-sm-2 col-form-label">$label</label>';
$label = '<label for="'.$id.'" class="col-sm-2 col-form-label">'.$args['label'].'</label>';
}
$class = 'form-control';