From 24e95482977c03309bcb1a0c53e343c016e7f2d0 Mon Sep 17 00:00:00 2001 From: lolcat Date: Wed, 12 Jun 2024 22:41:02 -0400 Subject: i fucking hate google --- lib/frontend.php | 2 +- lib/fuckhtml.php | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/frontend.php b/lib/frontend.php index 1c3eb09..5579635 100644 --- a/lib/frontend.php +++ b/lib/frontend.php @@ -1302,7 +1302,7 @@ class frontend{ return htmlspecialchars($image); } - return "/proxy?i=" . urlencode($image) . "&s=" . $format; + return "/proxy.php?i=" . urlencode($image) . "&s=" . $format; } public function htmlnextpage($gets, $npt, $page){ diff --git a/lib/fuckhtml.php b/lib/fuckhtml.php index f3a6efe..8b5eba5 100644 --- a/lib/fuckhtml.php +++ b/lib/fuckhtml.php @@ -240,7 +240,17 @@ class fuckhtml{ public function getElementsByFuzzyAttributeValue(string $name, string $value, $collection = null){ $elems = $this->getElementsByAttributeName($name, $collection); - $value = explode(" ", $value); + $value = + explode( + " ", + trim( + preg_replace( + '/ +/', + " ", + $value + ) + ) + ); $return = []; -- cgit v1.2.3 From 4e039f709571c50895501f1422659d102bef6b16 Mon Sep 17 00:00:00 2001 From: lolcat Date: Wed, 12 Jun 2024 22:42:21 -0400 Subject: dementia moment --- lib/frontend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/frontend.php b/lib/frontend.php index 5579635..1c3eb09 100644 --- a/lib/frontend.php +++ b/lib/frontend.php @@ -1302,7 +1302,7 @@ class frontend{ return htmlspecialchars($image); } - return "/proxy.php?i=" . urlencode($image) . "&s=" . $format; + return "/proxy?i=" . urlencode($image) . "&s=" . $format; } public function htmlnextpage($gets, $npt, $page){ -- cgit v1.2.3