From aab2a8cde42a6bab9694bb67d0e35c287e1ddacb Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Wed, 27 Feb 2013 21:17:02 -0500 Subject: [PATCH] Issue #1929282 by Digital Fire: Fixed Undefined function: drupal_strtolower() in com.php. --- core/lib/Drupal/Component/Uuid/Com.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Component/Uuid/Com.php b/core/lib/Drupal/Component/Uuid/Com.php index 41cfba42ffec..945a30b12948 100644 --- a/core/lib/Drupal/Component/Uuid/Com.php +++ b/core/lib/Drupal/Component/Uuid/Com.php @@ -15,6 +15,6 @@ class Com implements UuidInterface { public function generate() { // Remove {} wrapper and make lower case to keep result consistent. - return drupal_strtolower(trim(com_create_guid(), '{}')); + return strtolower(trim(com_create_guid(), '{}')); } } -- GitLab