Skip to content
Snippets Groups Projects
Commit 09863a2e authored by Earl Miles's avatar Earl Miles
Browse files

Fixing typo in code that shouldnt even have been committed.

parent 4078c7a5
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment