Fixed typo in template that prevent project permissions to be duplicated
This commit is contained in:
@@ -24,6 +24,7 @@ Improvements:
|
|||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
|
* Fixed typo in template that prevent project permissions to be duplicated
|
||||||
* Fixed search query with multiple assignees (nested OR conditions)
|
* Fixed search query with multiple assignees (nested OR conditions)
|
||||||
* Fixed Markdown editor auto-grow on the task form (Safari)
|
* Fixed Markdown editor auto-grow on the task form (Safari)
|
||||||
* Fixed compatibility issue with PHP 5.3 for OAuthUserProvider class
|
* Fixed compatibility issue with PHP 5.3 for OAuthUserProvider class
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
<p class="alert"><?= t('Which parts of the project do you want to duplicate?') ?></p>
|
<p class="alert"><?= t('Which parts of the project do you want to duplicate?') ?></p>
|
||||||
|
|
||||||
<?php if (! $is_private): ?>
|
<?php if (! $is_private): ?>
|
||||||
<?= $this->form->checkbox('projectPermission', t('Permissions'), 1, true) ?>
|
<?= $this->form->checkbox('projectPermissionModel', t('Permissions'), 1, true) ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?= $this->form->checkbox('categoryModel', t('Categories'), 1, true) ?>
|
<?= $this->form->checkbox('categoryModel', t('Categories'), 1, true) ?>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<?= $this->form->csrf() ?>
|
<?= $this->form->csrf() ?>
|
||||||
|
|
||||||
<?php if ($project['is_private'] == 0): ?>
|
<?php if ($project['is_private'] == 0): ?>
|
||||||
<?= $this->form->checkbox('projectPermission', t('Permissions'), 1, true) ?>
|
<?= $this->form->checkbox('projectPermissionModel', t('Permissions'), 1, true) ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?= $this->form->checkbox('categoryModel', t('Categories'), 1, true) ?>
|
<?= $this->form->checkbox('categoryModel', t('Categories'), 1, true) ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user