Skip to content

Commit

Permalink
Incorrect formatting when outputting update attribute on RF resource …
Browse files Browse the repository at this point in the history
  • Loading branch information
dasgarner committed May 3, 2018
1 parent aefa257 commit 2f87942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Xmds/Soap.php
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ protected function doRequiredFiles($serverKey, $hardwareKey, $httpDownloads)
$file->setAttribute('layoutid', $layoutId);
$file->setAttribute('regionid', $region->regionId);
$file->setAttribute('mediaid', $widget->widgetId);
$file->setAttribute('updated', ($layoutModifiedDt->greaterThan($widgetModifiedDt) ? $layoutModifiedDt : $widgetModifiedDt));
$file->setAttribute('updated', ($layoutModifiedDt->greaterThan($widgetModifiedDt) ? $layoutModifiedDt->format('U') : $widgetModifiedDt->format('U')));
$fileElements->appendChild($file);
}
}
Expand Down

0 comments on commit 2f87942

Please sign in to comment.