From bd96d249f0a8db4422134ec43dd70d331e5d2bdf Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Mon, 18 Oct 2010 22:37:11 +0000 Subject: [PATCH] MINOR Fixed incorrect word "colon" with "dot" (from r108002) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112704 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- security/Member.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/Member.php b/security/Member.php index 402b2e9b8..7251fb08a 100755 --- a/security/Member.php +++ b/security/Member.php @@ -1844,7 +1844,7 @@ class Member_DatetimeOptionsetField extends OptionsetField { $source = $this->getSource(); foreach($source as $key => $value) { - // convert the ID to an HTML safe value (colons are not replaced, as they are valid in an ID attribute) + // convert the ID to an HTML safe value (dots are not replaced, as they are valid in an ID attribute) $itemID = $this->id() . '_' . preg_replace('/[^\.a-zA-Z0-9\-\_]/', '_', $key); if($key == $this->value) { $useValue = false;