BUGFIX Fixing the comment's author website url being converted to lowercase: now case is not affected.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.3@84380 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Mateusz Uzdowski 2009-08-13 22:54:49 +00:00 committed by Sam Minnee
parent 1947fc6b18
commit 6e9a91efca

View File

@ -152,7 +152,7 @@ class PageComment extends DataObject {
}
}
$this->CommenterURL = strtolower($url);
$this->CommenterURL = $url;
}
}