lib/config - remove non existing variable from getRevisionContext((), closes https://github.com/opnsense/core/pull/7500

This commit is contained in:
Ad Schellevis 2024-05-31 11:01:43 +02:00
parent 2831bbaabd
commit 466494914e

View File

@ -486,7 +486,7 @@ class Config extends Singleton
}
}
}
$revision['time'] = empty($timestamp) ? microtime(true) : $timestamp;
$revision['time'] = microtime(true);
return $revision;
}