Skip to content
Snippets Groups Projects
Commit beb9e0cc authored by Aaron Bauman's avatar Aaron Bauman
Browse files

Issue #2908147: mis-named variable in deletehandler

parent 2b36f54f
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,7 @@ class DeleteHandler { ...@@ -99,7 +99,7 @@ class DeleteHandler {
} }
// @TODO add some accommodation to handle deleted records per-mapping. // @TODO add some accommodation to handle deleted records per-mapping.
$last_delete_sync = !empty($pull_info[$mapping->id()]['last_delete_timestamp']) $last_delete_sync = !empty($pull_info[$mapping->id()]['last_delete_timestamp'])
? $pull_info[$type]['last_delete_timestamp'] ? $pull_info[$mapping->id()]['last_delete_timestamp']
: strtotime('-29 days'); : strtotime('-29 days');
$now = time(); $now = time();
// getDeleted() constraint: startDate must be at least one minute // getDeleted() constraint: startDate must be at least one minute
......
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