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
base: 277681c
Choose a base ref
...
head repository: mantisbt/mantisbt
compare: bfd83a1
Choose a head ref
  • 4 commits
  • 5 files changed
  • 1 contributor

Commits on Oct 6, 2011

  1. Fixes moving of bugs without category

    Prior to this, attempting to move an issue with no category set
    (allowed with $g_allow_no_category = ON) to another project generated
    error 1502.
    
    Now, Mantis will successfully move the issue, and also set the category
    to the default value if it is mandatory in the target project.
    
    Fixes #13341
    dregad committed Oct 6, 2011
    Copy the full SHA
    978b17a View commit details
    Browse the repository at this point in the history
  2. Use constants not hardcoded values for relationship lists

    Defines 2 new constants BUG_REL_NONE and BUG_REL_ANY referenced when
    building relationship selection lists, instead of using hardcoded
    values -2 and -1 respectively.
    
    Affects issue #12450
    dregad committed Oct 6, 2011
    Copy the full SHA
    47d3558 View commit details
    Browse the repository at this point in the history
  3. Add config for default relationship when cloning a bug

    Introduce a new global config $g_default_bug_relationship_clone, used to
    preset the selection list relationship of a cloned bug with its parent.
    
    Defaults to BUG_REL_NONE.
    
    Fix #12450
    dregad committed Oct 6, 2011
    Copy the full SHA
    1f9c4bd View commit details
    Browse the repository at this point in the history
  4. Add config for new bug relationships

    Adds a new global config $g_default_bug_relationship, which presets the
    relation type in the selection list.
    Defaults to BUG_RELATED.
    
    This slightly changes the behavior compared to earlier versions, as the
    default was BUG_REL_ANY (-1); however, since this is not a valid entry
    in the selection list, the first value (BUG_DEPENDANT) was used instead.
    dregad committed Oct 6, 2011
    Copy the full SHA
    bfd83a1 View commit details
    Browse the repository at this point in the history