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: d38abf9556a3
Choose a base ref
...
head repository: mantisbt/mantisbt
compare: e61e63ca07d6
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 23, 2013

  1. Changed version to 1.2.14dev

    dregad committed Jan 23, 2013
    Copy the full SHA
    ced463b View commit details
    Browse the repository at this point in the history
  2. Fix huge memory consumption for print_user_option_list()

    Following the implementation of the fix for 0010130, calling this
    function when the current project is ALL_PROJECTS causes a massive surge
    in memory usage as the code builds a large array containing the list of
    all users in all projects accessible to the current user, and then
    reduces it to remove duplicates.
    
    This commit reduces the problem by removing calls to array_merge() and
    building the consolidated user list in a single pass, using a while
    loop. No-longer-used arrays are unset to free up memory.
    
    Fixes #15411
    dregad committed Jan 23, 2013
    Copy the full SHA
    e61e63c View commit details
    Browse the repository at this point in the history