From e5f41ca3e01f6bcd670ec660a7eb975523dd4ad3 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 15 Oct 2010 01:16:47 +0000 Subject: [PATCH] MINOR Fixed hidden mbstring reliance in SiteTree->generateURLSegment() (broken in r104679) (from r104883) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112403 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/model/SiteTree.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/model/SiteTree.php b/core/model/SiteTree.php index 8c84f764f..0b931c6c4 100755 --- a/core/model/SiteTree.php +++ b/core/model/SiteTree.php @@ -1524,7 +1524,7 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid * @return string Generated url segment */ function generateURLSegment($title){ - $t = mb_strtolower($title); + $t = (function_exists('mb_strtolower')) ? mb_strtolower($title) : strtolower($title); $t = Object::create('Transliterator')->toASCII($t); $t = str_replace('&','-and-',$t); $t = str_replace('&','-and-',$t);