Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mantisbt/mantisbt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5bf0888
Choose a base ref
...
head repository: mantisbt/mantisbt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 12cf79d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 14, 2011

  1. Fix #11744: Failure getting tag candidates on MSSQL

    make the query to get the available tags id , return the correct list
    gcompagnon committed Oct 14, 2011

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dtzWill Will Dietz
    Copy the full SHA
    c2a05f8 View commit details
  2. Merge pull request #19 from gcompagnon/patch-4

    Fix #11744: Failure getting tag candidates on MSSQL
    rombert committed Oct 14, 2011

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    12cf79d View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 core/tag_api.php
2 changes: 1 addition & 1 deletion core/tag_api.php
Original file line number Diff line number Diff line change
@@ -437,7 +437,7 @@ function tag_get_candidates_for_bug( $p_bug_id ) {
$t_subquery_results = array();

while( $row = db_fetch_array( $result ) ) {
$t_subquery_results[] = (int)$row;
$t_subquery_results[] = (int)$row['id'];
}

if ( count ( $t_subquery_results ) == 0 ) {