From 5fb1260ba395b687123ff4980a8915ddc148fed2 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 29 Feb 2024 12:31:33 -0800 Subject: [PATCH] =?UTF-8?q?Fix=20issue=20with=20urls=20ending=20in=20?= =?UTF-8?q?=E2=80=98/=E2=80=99=20getting=20normalized=20wrong?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Normalizing them this way ruins the url by cutting off a character too many and making the url invalid. --- src/SemanticScuttle/Service/Bookmark.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SemanticScuttle/Service/Bookmark.php b/src/SemanticScuttle/Service/Bookmark.php index 56003c6..17f91b1 100644 --- a/src/SemanticScuttle/Service/Bookmark.php +++ b/src/SemanticScuttle/Service/Bookmark.php @@ -1138,7 +1138,7 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService // Delete final / if (substr($address, -1) == '/') { - $address = substr($address, 0, strlen($address)-2); + $address = substr($address, 0, -1); } return $address;