We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 274b65b + 06ec364 commit 5638671Copy full SHA for 5638671
src/Builders/ViewsBuilder.php
@@ -171,7 +171,7 @@ private function buildEditForm()
171
{
172
$form = '';
173
foreach ($this->fields as $field) {
174
- $title = $field->label;
+ $title = addslashes($field->label);
175
$label = $field->title;
176
if (in_array($field->validation,
177
$this->starred) && $field->type != 'password' && $field->type != 'file' && $field->type != 'photo'
@@ -222,7 +222,7 @@ private function buildCreateForm()
222
223
224
225
226
$key = $field->title;
227
if (in_array($field->validation, $this->starred)) {
228
$title .= '*';
0 commit comments