Skip to content

Commit

Permalink
Merge pull request #2359 from ITK-Leantime/fix/issue-2358
Browse files Browse the repository at this point in the history
2358: Fixed call to undefined method
  • Loading branch information
marcelfolaron authored Feb 29, 2024
2 parents e4c010d + 2a2f081 commit c9a2fe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Domain/Projects/Templates/duplicateProject.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<input type="text" name="projectName" value="<?=$tpl->__('label.copy_of')?> <?php $tpl->e($project['name'])?>" /><br />

<label><?=$tpl->__('label.planned_start_date') ?></label>
<input type="text" name="startDate" class="projectDateFrom" value="<?php echo $tpl->getFormattedDateString(date("Y-m-d")) ?>" placeholder="<?=$tpl->__('language.dateformat') ?>" id="sprintStart" /><br />
<input type="text" name="startDate" class="projectDateFrom" value="<?php echo format(date("Y-m-d"))->date()?>" placeholder="<?=$tpl->__('language.dateformat') ?>" id="sprintStart" /><br />

<label><?=$tpl->__('label.client_product') ?></label>
<select name="clientId" id="clientId">
Expand Down

0 comments on commit c9a2fe1

Please sign in to comment.