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

fix: Go back to soft typing for template function p
pull/51668/head
Kate 10 months ago committed by GitHub
commit cdc2e8b9c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      lib/private/Template/functions.php

@ -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));
}

Loading…
Cancel
Save