Skip to content

Commit

Permalink
Fix #14587: Dynamic value lists of enumeration custom fields not work…
Browse files Browse the repository at this point in the history
…ing for category
  • Loading branch information
atrol committed Aug 12, 2012
1 parent a8cefa2 commit e9383de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/custom_function_api.php
Expand Up @@ -413,7 +413,7 @@ function custom_function_default_enum_categories() {

$t_enum = array();
foreach( $t_categories as $t_category ) {
$t_enum[] = $t_category['category'];
$t_enum[] = $t_category['name'];
}

$t_possible_values = implode( '|', $t_enum );
Expand Down

0 comments on commit e9383de

Please sign in to comment.