Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Added missing '$' in front of variable name
Error introduced by a939b3e

Affects #13938
  • Loading branch information
dregad committed Feb 24, 2012
1 parent a939b3e commit 8bb88e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/print_api.php
Expand Up @@ -678,7 +678,7 @@ function print_version_option_list( $p_version = '', $p_project_id = null, $p_re
if( !empty( $p_version ) ) {
$t_version_id = version_get_id( $p_version, $c_project_id );
if( $t_version_id !== false ) {
$versions[] = version_cache_row( t_version_id );
$versions[] = version_cache_row( $t_version_id );
}
}
}
Expand Down

0 comments on commit 8bb88e7

Please sign in to comment.