From 5fb1260ba395b687123ff4980a8915ddc148fed2 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 29 Feb 2024 12:31:33 -0800 Subject: Fix issue with urls ending in ‘/’ getting normalized wrong 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(-) (limited to 'src') 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; -- cgit v1.2.3-54-g00ecf