From: Jan Schneider Date: Fri, 15 Oct 2010 10:47:58 +0000 (+0200) Subject: Use Horde_String. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e93fead90638440a36f410a49fe9ff29ae513181;p=horde.git Use Horde_String. --- 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.