-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error on Activity Log #2828
Comments
I have the same error. The same error shows up on the deployment page too for me |
Seems to be related with php 8.1.25 update |
On Debian 12 with PHP 8.2 - it was broken after updating PHP from 8.2.10 --> 8.2.12. Loaded Libraries Loaded Modules when adding some debugging code into /**
* @param $time
* @return string
*/
public function getFullDay($time)
{
echo "$time<br>";
echo $this->getLocale().'<br>';
return $this->formatter()->format($time);
} then it dumps 1699280318
C ... a unix timestamp and "C" from $this->getLocale(). |
I think that if you can force the C to "en_US_POSIX" it should work. however according to phpsrc it should be fixed on next version |
Anyone found a way to fix this without waiting the a new version from php? |
This is my hack(*) until the next php update arrives. (1)
(2) ...
// $this->getLocale(),
"en_US_POSIX",
... In each file is one replacement. (3) If this did not work you should restore both files of (1). Good luck :-) |
Expected Behavior
View a list of changes
Current Behavior
Possible Solution
Steps to Reproduce (for bugs)
Do a change and go to Actitivy Log
Your Environment
Loaded Libraries
icinga/icinga-php-library 0.13.0
icinga/icinga-php-thirdparty 0.12.0
Loaded Modules
director 1.11.0
icingadb 1.1.0
graphite 1.2.4
incubator 0.20.0
ipl v0.5.0
nagvis 1.1.1
pdfexport 0.10.2
reactbundle 0.9.0
reporting 0.10.0
x509 1.3.1
The text was updated successfully, but these errors were encountered: