Skip to content
Snippets Groups Projects
Unverified Commit d41a8c19 authored by Eileen McNaughton's avatar Eileen McNaughton Committed by GitHub
Browse files

Merge pull request #23056 from yashodha/dev-3141

(#3141) Membership should be listed chronologically by join d…
parents 115f9a8a 4609d331
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,7 @@ class CRM_Member_Page_UserDashboard extends CRM_Contact_Page_View_UserDashBoard
$dao = new CRM_Member_DAO_Membership();
$dao->contact_id = $this->_contactId;
$dao->is_test = 0;
$dao->orderBy('start_date DESC');
$dao->find();
while ($dao->fetch()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment