Merge pull request #51663 from nextcloud/fix/fix-loginflow-v1

fix: Go back to soft typing for template function p
This commit is contained in:
Kate 2025-03-24 13:39:02 +01:00 committed by GitHub
commit cdc2e8b9c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,10 @@ use OCP\IURLGenerator;
use OCP\Server;
use OCP\Util;
function p(string $string): void {
/**
* @param string $string
*/
function p($string): void {
print(Util::sanitizeHTML($string));
}