diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 08:46:27 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 08:46:27 -0400 |
commit | 5d061594486c0d5761ac80a7548fdb4fdad0619b (patch) | |
tree | d2b41f57705c53d0b94724ced2c6cb9b826ee913 /templates/board_edit.php | |
parent | e2d658b396d8bd1f60261924c05a0c6481647c14 (diff) |
Improve webhooks documentation
Diffstat (limited to 'templates/board_edit.php')
-rw-r--r-- | templates/board_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/board_edit.php b/templates/board_edit.php index 35589bb4..575536a8 100644 --- a/templates/board_edit.php +++ b/templates/board_edit.php @@ -20,7 +20,7 @@ </tr> <?php foreach ($columns as $column): ?> <tr> - <td><?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']') ?></td> + <td><?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']', array('title="column_id='.$column['id'].'"')) ?></td> <td><?= Helper\form_text('title['.$column['id'].']', $values, $errors, array('required')) ?></td> <td><?= Helper\form_number('task_limit['.$column['id'].']', $values, $errors, array('placeholder="'.t('limit').'"')) ?></td> <td> |