From e93fead90638440a36f410a49fe9ff29ae513181 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Fri, 15 Oct 2010 12:47:58 +0200 Subject: [PATCH] Use Horde_String. --- wicked/lib/Text_Wiki/Render/Xhtml/Url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicked/lib/Text_Wiki/Render/Xhtml/Url.php b/wicked/lib/Text_Wiki/Render/Xhtml/Url.php index a93e2a18b..104977038 100644 --- a/wicked/lib/Text_Wiki/Render/Xhtml/Url.php +++ b/wicked/lib/Text_Wiki/Render/Xhtml/Url.php @@ -25,7 +25,7 @@ class Text_Wiki_Render_Xhtml_Url extends Text_Wiki_Render { // Find the rightmost dot and determine the filename // extension. $pos = strrpos($href, '.'); - $ext = strtolower(substr($href, $pos + 1)); + $ext = Horde_String::lower(substr($href, $pos + 1)); $href = htmlspecialchars($href); // Allow for alternative targets on non-anchor HREFs. -- 2.11.0