Skip to content

Commit

Permalink
Fix typo for $row variable in custom_field_api
Browse files Browse the repository at this point in the history
$row was renamed to $t_row for consistency with MantisBT code style
guidelines.
  • Loading branch information
davidhicks committed Aug 20, 2011
1 parent e66ae0f commit 1813b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/core/custom_field_api.php
Expand Up @@ -1141,7 +1141,7 @@ function custom_field_get_sequence( $p_field_id, $p_project_id ) {

$t_row = db_fetch_array( $result );

if( !$row ) {
if( !$t_row ) {
return false;
}

Expand Down

0 comments on commit 1813b43

Please sign in to comment.