Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
diddipoeler committed Mar 12, 2024
1 parent 4cb9997 commit afc3e2e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions admin/views/fieldsets/tmpl/default_playgroundnotiz.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function addRows()
var input = jQuery('<input>');
input.attr('type', 'text');
input.attr('id', 'playground_id');
input.attr('name', 'playground_id');
input.attr('name', 'playground_id[]');
input.attr('disabled', 'disabled');
input.attr('value', '<?php echo $this->item->id; ?>');
column1.append(input);
Expand All @@ -56,23 +56,23 @@ function addRows()
var input = jQuery('<input>');
input.attr('type', 'text');
input.attr('id', 'date_von');
input.attr('name', 'date_von');
input.attr('name', 'date_von[]');
column2.append(input);
row.append(column2);

var column3 = jQuery('<td>');
var input = jQuery('<input>');
input.attr('type', 'text');
input.attr('id', 'date_bis');
input.attr('name', 'date_bis');
input.attr('name', 'date_bis[]');
column3.append(input);
row.append(column3);

var column4 = jQuery('<td>');
var input = jQuery('<input>');
input.attr('type', 'text');
input.attr('id', 'name_visitors');
input.attr('name', 'name_visitors');
input.attr('name', 'name_visitors[]');
column4.append(input);
row.append(column4);

Expand All @@ -81,7 +81,7 @@ function addRows()
var input = jQuery('<input>');
input.attr('type', 'text');
input.attr('id', 'notes');
input.attr('name', 'notes');
input.attr('name', 'notes[]');
column5.append(input);
row.append(column5);

Expand All @@ -90,7 +90,7 @@ function addRows()
var input = jQuery('<input>');
input.attr('type', 'text');
input.attr('id', 'max_visitors');
input.attr('name', 'max_visitors');
input.attr('name', 'max_visitors[]');
input.attr('size', '10');
column6.append(input);
row.append(column6);
Expand Down

0 comments on commit afc3e2e

Please sign in to comment.