-
-
Notifications
You must be signed in to change notification settings - Fork 824
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 activity search to work by url params #15990
Conversation
(Standard links)
|
$this->_submitValues = $this->_formValues; | ||
} | ||
} | ||
parent::preProcess(); | ||
|
||
if (empty($this->_formValues)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The parent fn doesn't seem to do these rows - but should
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed on that
@eileenmcnaughton should we remove L195 as well? |
6b20d5b
to
7c3e948
Compare
@eileenmcnaughton just performed an r-run on this Date field works perfectly |
7c3e948
to
d3dd3e1
Compare
@eileenmcnaughton this fixes the e-notice for me when using &activity_text=xxx
|
d3dd3e1
to
606855e
Compare
It seems to be missing the call to the parent fn Note I feel like the parent should also handle some of the rows below in future
606855e
to
1c1e779
Compare
@seamuslee001 done |
test this please |
Overview
Fixes activity search for url params
Before
civicrm/activity/search?reset=1&force=1&activity_date_time_high=20180101 does not apply a filter
After
civicrm/activity/search?reset=1&force=1&activity_date_time_high=20180101 applies a filter
Technical Details
It seems to be missing the call to the parent fn
Note I feel like the parent should also handle some of the rows below in future
Comments
@seamuslee001 in response to your comment here #15942 (comment)