mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
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:
commit
cdc2e8b9c8
1 changed files with 4 additions and 1 deletions
|
|
@ -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…
Reference in a new issue