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 2dcf6fa commit d5b3447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/custom_function_api.php
Expand Up @@ -422,7 +422,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 d5b3447

Please sign in to comment.