Skip to content

Commit 8bb88e7

Browse files
committedFeb 24, 2012
Fix typo
Added missing '$' in front of variable name Error introduced by a939b3e Affects #13938
1 parent a939b3e commit 8bb88e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎core/print_api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ function print_version_option_list( $p_version = '', $p_project_id = null, $p_re
678678
if( !empty( $p_version ) ) {
679679
$t_version_id = version_get_id( $p_version, $c_project_id );
680680
if( $t_version_id !== false ) {
681-
$versions[] = version_cache_row( t_version_id );
681+
$versions[] = version_cache_row( $t_version_id );
682682
}
683683
}
684684
}

0 commit comments

Comments
 (0)
Please sign in to comment.