Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix up display of date fields to ensure that they don't cause issue t… #10

Merged
merged 1 commit into from
Nov 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions templates/CRM/Contact/Form/Search/Criteria/ChangeLog.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,14 @@
<div id="changelog" class="form-item">
<table class="form-layout">
<tr>
{include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="created_date"}
<td>
<span class="modifiedBy"><label>{ts}Modified By{/ts}</label></span></br>
{$form.changed_by.html}
</td>
<td>
{include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="created_date"}
</td>
<td>
{include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="modified_date"}
{$form.changed_by.html}<br><span class="description">{ts}Note this field just filters on who made a change no matter when that change happened, It doesn't have any link to the modified date field below{/ts}</span>
</td>
</tr>
<tr>
{include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="modified_date"}
</tr>
</table>
</div>