8000 Fix placeholder date format · symfony/symfony@9a44aa8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9a44aa8

Browse files
committed
Fix placeholder date format
1 parent 08a0242 commit 9a44aa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/search.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
<input type="text" name="token" id="token" value="{{ token }}" placeholder="e.g. 1f321b">
2222
<div class="clear-fix"></div>
2323
<label for="start">From</label>
24-
<input type="date" name="start" id="start" value="{{ start }}" placeholder="e.g. {{ '-2days'|date('dd.mm.YYYY') }}">
24+
<input type="date" name="start" id="start" value="{{ start }}" placeholder="e.g. {{ '-2days'|date('d.m.Y') }}">
2525
<div class="clear-fix"></div>
2626
<label for="end">Until</label>
27-
<input type="date" name="end" id="end" value="{{ end }}" placeholder="e.g. {{ 'now'|date('dd.mm.YYYY') }}">
27+
<input type="date" name="end" id="end" value="{{ end }}" placeholder="e.g. {{ 'now'|date('d.m.Y') }}">
2828
<div class="clear-fix"></div>
2929
<label for="limit">Limit</label>
3030
<select name="limit" id="limit">

0 commit comments

Comments
 (0)
0