Skip to content

Commit

Permalink
2358: Fixed call to undefined method
Browse files Browse the repository at this point in the history
  • Loading branch information
jekuaitk committed Feb 29, 2024
1 parent 4b89744 commit 2a2f081
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 2a2f081

Please sign in to comment.