From b1db2aeb31a028c32f27d478adcc8aa5fd49aa86 Mon Sep 17 00:00:00 2001 From: dogmatic69 Date: Thu, 13 Sep 2012 06:24:36 +0100 Subject: [PATCH] fixing the missing space on the if --- lib/Cake/Utility/String.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Utility/String.php b/lib/Cake/Utility/String.php index 0e1495c9fa9..026286f5839 100644 --- a/lib/Cake/Utility/String.php +++ b/lib/Cake/Utility/String.php @@ -75,7 +75,7 @@ public static function uuid() { $node = null; } - if(empty($node)) { + if (empty($node)) { $node = crc32(Configure::read('Security.salt')); }