From 9a8dd38493f7860f2b0485dc9edca01e97230803 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 21 Apr 2021 23:35:24 +0200 Subject: LibWeb+Base: Convert String::format() to String::formatted() This error page template is slightly hilarious and should probably be replaced with AK::SourceGenerator or some such, but for now let's just get rid of the call to String::format(). --- Base/res/html/error.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Base') diff --git a/Base/res/html/error.html b/Base/res/html/error.html index 058ae0514a..8b06ed12a8 100644 --- a/Base/res/html/error.html +++ b/Base/res/html/error.html @@ -14,8 +14,8 @@
Warning -

Failed to load %s

+

Failed to load {}

-

Error: %s

+

Error: {}

-- cgit v1.2.3