From cdf958d29333d448f4521f4d2faa2592b58e9b27 Mon Sep 17 00:00:00 2001 From: lolcat Date: Sun, 10 Aug 2025 21:55:15 -0400 Subject: fix wikipedia crash --- about.php | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 about.php (limited to 'about.php') diff --git a/about.php b/about.php new file mode 100644 index 0000000..b0bb65c --- /dev/null +++ b/about.php @@ -0,0 +1,39 @@ +load( + "header_nofilters.html", + [ + "title" => "About", + "class" => " class=\"about\"" + ] + ); + +$left = + explode( + "\n", + file_get_contents("template/about.html") + ); + +$out = ""; + +foreach($left as $line){ + + $out .= trim($line); +} + +echo + $frontend->load( + "search.html", + [ + "timetaken" => null, + "class" => "", + "right-left" => "", + "right-right" => "", + "left" => $out + ] + ); -- cgit v1.2.3