We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
6.2.44
rpm from https://copr.fedorainfracloud.org/coprs/xavierb/sympa/
RHEL 7.6
The list "info" page should not generate entries in the Apache error log
Each page view generates an error:
[Fri Jul 12 10:41:21.156711 2019] [proxy_fcgi:error] [pid 13008] [client 131.111.56.48:45994] AH01071: Got error 'Argument "" isn't numeric in numeric gt (>) at /usr/share/sympa/default/web_tt2/info.tt2 line 32.\n'
Appears to be down to the following in web_tt2/info.tt2:
web_tt2/info.tt2
[% IF mod_message > 0 %] ... [% IF mod_total_shared > 0 %]
If I replace that with:
[% IF mod_message && (mod_message > 0) %] ... [% IF mod_total_shared && (mod_total_shared > 0) %]
The errors disappear.
The text was updated successfully, but these errors were encountered:
@dpc22, thanks for reporting bug! Your suggestion will be included in the next beta released in this weelend. Thanks!
Sorry, something went wrong.
ikedas
Successfully merging a pull request may close this issue.
Version
6.2.44
Installation method
rpm from https://copr.fedorainfracloud.org/coprs/xavierb/sympa/
RHEL 7.6
Expected behavior
The list "info" page should not generate entries in the Apache error log
Actual behavior
Each page view generates an error:
Additional information
Appears to be down to the following in
web_tt2/info.tt2
:If I replace that with:
The errors disappear.
The text was updated successfully, but these errors were encountered: