Skip to content

Commit

Permalink
Fix #16515: Manage custom field page crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Oct 21, 2013
1 parent 21d36d7 commit 5f1c2d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/custom_field_api.php
Expand Up @@ -753,7 +753,7 @@ function custom_field_get_ids() {
function custom_field_get_project_ids( $p_field_id ) {
$t_custom_field_project_table = db_get_table( 'custom_field_project' );
$query = "SELECT project_id FROM $t_custom_field_project_table WHERE field_id = " . db_param();
$result = db_query_bound( $query, array( $p_field_id ) );
$t_result = db_query_bound( $query, array( $p_field_id ) );

$t_ids = array();

Expand Down

0 comments on commit 5f1c2d6

Please sign in to comment.