Actions
Bug #3081
closedDate fields report false positive updates
Description
When you update a profile and it havs null date fields the fields are reported as being updated mainly because the 0000-00-00 value is populated in the database.
As reported here:
https://www.joomlapolis.com/forum/153-professional-member-support/184739-profile-update-logger-a-empty-date-fields
I am not sure there is anything that can be done, but opening ticket to investigate.
Updated by nant almost 13 years ago
- Status changed from New to Assigned
- Assignee set to nant
- Target version set to 1.3
Looks like for (empty) dates:
old value = "0000-00-00" but new value is null
Will have to figure out an exception.
Updated by nant almost 13 years ago
- Estimated time set to 1:00 h
Testing a simple filter fix:
default:
if (($oB->$sKey != "0000-00-00") AND ( $oA->$sKey != null )) { // empty date exception
$retArr[] = array($sKey, $oB->$sKey, $oA->$sKey);
}
Updated by nant almost 13 years ago
The fix should go around line 589 of the cb.pulog.php file
Actions