@stephenw10 said in RC 2.8.0 - ACB Time Stamp is Incorrect:
Looks like a variable name change was missed. Try:
diff --git a/src/etc/inc/acb.inc b/src/etc/inc/acb.inc
index daa5a27c4e7472548338a4bd566ae30524f7db6f..7e82d436488c077547c9248e2e3cb15be5f2ff9f 100644
--- a/src/etc/inc/acb.inc
+++ b/src/etc/inc/acb.inc
@@ -160,8 +160,8 @@ function acb_check_dns() {
/* Change the time zone to reflect local time of ACB revisions.
* See Redmine #5250 */
function acb_time_shift($revision, $format = DATE_RFC2822) {
- global $acbtz;
- $budate = new DateTime($revision, $acbtz);
+ global $acb_server_tz;
+ $budate = new DateTime($revision, $acb_server_tz);
$mytz = new DateTimeZone(date_default_timezone_get());
$budate->setTimezone($mytz);
return htmlspecialchars($budate->format($format));
Patch worked well, ACB Restore timestamps are now reflecting local time set in pfSense.
Thanks.