Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 37c2b0a

Browse files
committedFeb 24, 2012
Fix typo
Added missing '$' in front of variable name Error introduced by 081ca28 Affects #13938
1 parent 081ca28 commit 37c2b0a

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
@@ -770,7 +770,7 @@ function print_version_option_list( $p_version = '', $p_project_id = null, $p_re
770770
if( !empty( $p_version ) ) {
771771
$t_version_id = version_get_id( $p_version, $c_project_id );
772772
if( $t_version_id !== false ) {
773-
$versions[] = version_cache_row( t_version_id );
773+
$versions[] = version_cache_row( $t_version_id );
774774
}
775775
}
776776
}

0 commit comments

Comments
 (0)
Please sign in to comment.