Skip to content

Commit

Permalink
Fixed corrupted module forms when importing a package or extension.
Browse files Browse the repository at this point in the history
Thanks jmason03 and visconti on the forums.
  • Loading branch information
timbuckingham committed May 28, 2015
1 parent a86c22b commit f0728a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/inc/bigtree/admin.php
Expand Up @@ -1034,7 +1034,7 @@ function createModuleForm($module,$title,$table,$fields,$hooks = array(),$defaul
$clean_fields = array();
foreach ($fields as $key => $data) {
$field = array(
"column" => $key,
"column" => $data["column"] ? $data["column"] : $key,
"type" => BigTree::safeEncode($data["type"]),
"title" => BigTree::safeEncode($data["title"]),
"subtitle" => BigTree::safeEncode($data["subtitle"]),
Expand Down

0 comments on commit f0728a9

Please sign in to comment.