You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The method tries to remove the X-Powered-By HTTP header when Secure::DisableBanner is active. For that it uses the pattern ^ X-Powered-By: .+? Open \s Ticket \s Request \s System \s \(http .+? \)$ \n However the actually generated header is something like X-Powered-By: OTOBO 10.1.x (https://www.otobo.de/)` which does not match the above regexp.
The method is not needed anyways, because Secure::DisableBanner is already considered when creating the HTTP headers.
Therefore the method can safely be removed.
The text was updated successfully, but these errors were encountered:
The method tries to remove the X-Powered-By HTTP header when
Secure::DisableBanner
is active. For that it uses the pattern^ X-Powered-By: .+? Open \s Ticket \s Request \s System \s \(http .+? \)$ \n
However the actually generated header is something like
X-Powered-By: OTOBO 10.1.x (https://www.otobo.de/)` which does not match the above regexp.The method is not needed anyways, because
Secure::DisableBanner
is already considered when creating the HTTP headers.Therefore the method can safely be removed.
The text was updated successfully, but these errors were encountered: