From 09863a2e0e93283406173dffe2437f715cb78f82 Mon Sep 17 00:00:00 2001
From: Earl Miles <merlin@logrus.com>
Date: Tue, 3 Feb 2009 18:24:52 +0000
Subject: [PATCH] Fixing typo in code that shouldnt even have been committed.

---
 ctools.module | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ctools.module b/ctools.module
index 580c422b..a7f7510f 100644
--- a/ctools.module
+++ b/ctools.module
@@ -232,7 +232,7 @@ function ctools_object_load(&$object, $table, $data) {
 
   // Go through our schema and build correlations.
   foreach ($schema['fields'] as $field => $info) {
-    if (isset($data->$field) {
+    if (isset($data->$field)) {
       $object->$field = empty($info['serialize']) ? $data->$field : unserialize($data->$field);
     }
   }
-- 
GitLab