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

Commits on Sep 20, 2012

  1. Cloning issues with attachments fails after upload folder changed

    With attachments stored on disk, if the project's upload directory
    changes and the files are moved to the new location, it is no longer
    possible to clone issues.
    
    The file_copy_attachments() function was modified to use the same logic
    as elsewhere in MantisBT, i.e. rely on file_normalize_attachment_path()
    to determine the attachment's path.
    
    Fixes #14718
    dregad committed Sep 20, 2012
    Copy the full SHA
    27aa2b8 View commit details
    Browse the repository at this point in the history
  2. Force validation of upload path if file_upload_method != DATABASE

    Prior to this, the upload path would not be checked if it was empty
    (ie. defaulting to $g_absolute_path_default_upload_folder),
    which could cause issues if that directory was missing or read-only.
    
    Checking this early allows catching any errors before users perform
    actual operations on file attachments.
    
    Fixes #14723
    dregad committed Sep 20, 2012
    Copy the full SHA
    27f5b4f View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2012

  1. Hide file upload path on project create page if storage is DB

    The logic implemented in 7aa07d8 for
    manage_proj_edit_page.php also applies to manage_proj_create_page.php.
    
    Fixes #14700
    dregad committed Sep 21, 2012
    Copy the full SHA
    714c2a1 View commit details
    Browse the repository at this point in the history
  2. Fix inconsistent behavior of upload path field hiding

    config_get() would return the file upload method for the current
    project, instead of the one for the project being edited.
    
    Use of $g_project_override for expected behavior.
    
    Fixes #14700
    dregad committed Sep 21, 2012
    Copy the full SHA
    33dfba5 View commit details
    Browse the repository at this point in the history
  3. Make Manage Project Create and Edit pages consistent

    The following changes were made:
    
     - Display the fields in the same order
     - Make the fields identical length
     - Display the "required" star next to project name
     - Use identical variable names
    
    Fixes #14725
    dregad committed Sep 21, 2012
    Copy the full SHA
    e90ef63 View commit details
    Browse the repository at this point in the history
  4. Fix config_get behavior with $g_project_override = ALL_PROJECTS

    Fixes #14724, affects #14700
    dregad committed Sep 21, 2012
    Copy the full SHA
    c7b1da5 View commit details
    Browse the repository at this point in the history
  5. Fix #14721: XML Parsing Error in print_all_bug_page_word.php

    Revised code so that generated page complies with xhtml 1.0 strict DTD.
    dregad committed Sep 21, 2012
    Copy the full SHA
    8ae62f3 View commit details
    Browse the repository at this point in the history