Skip to content

Commit

Permalink
Replace on with timestamp as the checkbox value
Browse files Browse the repository at this point in the history
In the default view. This will allow us to validate the timestamp
when making actions in the publish list view.

Re a45a9c3
  • Loading branch information
nitriques committed Jul 10, 2017
1 parent a45a9c3 commit 798eb8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symphony/content/content.blueprintssections.php
Expand Up @@ -54,7 +54,7 @@ public function __viewIndex()
$td1->appendChild(Widget::Label(__('Select Section %s', array(General::sanitize($s->get('name')))), null, 'accessible', null, array(
'for' => 'section-' . $s->get('id')
)));
$td1->appendChild(Widget::Input('items['.$s->get('id').']', 'on', 'checkbox', array(
$td1->appendChild(Widget::Input('items['.$s->get('id').']', $s->get('modification_date'), 'checkbox', array(
'id' => 'section-' . $s->get('id')
)));

Expand Down

0 comments on commit 798eb8e

Please sign in to comment.