Changesets: MantisBT

master 3b45a8a2

2026-05-07 08:07

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - lang/strings_belarusian_tarask.txt Diff File
mod - plugins/MantisCoreFormatting/lang/strings_belarusian_tarask.txt Diff File
mod - plugins/MantisGraph/lang/strings_belarusian_tarask.txt Diff File

master 5b9a0155

2026-05-05 11:46

dregad

Committer: community


Details Diff
Revise SECURITY.md for clarity and updates

Updated security guidelines to clarify support status and reporting process.
mod - SECURITY.md Diff File

master 36044d26

2026-05-05 03:54

raspopov

Committer: community


Details Diff
Add a cache for tokens retrieved from the database

A cache of tokens retrieved from the database has been added as
a new global variable, $g_cache_token.

The chosen cache format simplifies the process of obtaining a token and
storing it in the cache, but makes it more complicated to verify
the token ID; however, in practice, this does not reduce the cache's
efficiency due to the optimal order of function calls in MantisBT.

In addition, the code explicitly casts token identifiers to integers
throughout.

Fixes 0037098, https://github.com/mantisbt/mantisbt/pull/2210
Affected Issues
0037098
mod - core/tokens_api.php Diff File
add - tests/Mantis/TokensApiTest.php Diff File

master 898d8680

2026-05-04 11:38

raspopov

Committer: community


Details Diff
Fix debug log backtrace for Windows

Absolute paths and problematic path separators have been removed, since
function and file names are already sufficiently unique, and
the location of MantisBT files can be changed via the configuration.

The text has also been formatted consistently.

Fixes 0037097, PR https://github.com/mantisbt/mantisbt/pull/2209
Affected Issues
0037097
mod - core/logging_api.php Diff File

master f6265407

2026-05-04 08:05

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - lang/strings_russian.txt Diff File
mod - lang/strings_turkish.txt Diff File

master 107a02dd

2026-05-03 12:51

dregad


Details Diff
Do not display projects without attachments

Fixes 0037100
Affected Issues
0037100
mod - admin/move_attachments_page.php Diff File

master a0d8d46a

2026-05-02 19:26

dregad


Details Diff
Fix static analysis warnings
mod - bug_revision_view_page.php Diff File
mod - core/access_api.php Diff File

master de8960cf

2026-05-02 06:53

dregad


Details Diff
Fix PHPDoc and static analysis warnings
mod - api/soap/mc_file_api.php Diff File
mod - api/soap/mc_issue_attachment_api.php Diff File
mod - core/file_api.php Diff File

master 2aa73e38

2026-04-30 08:08

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - lang/strings_belarusian_tarask.txt Diff File
mod - lang/strings_dutch.txt Diff File

master b36230fd

2026-04-27 08:09

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - lang/strings_korean.txt Diff File
mod - lang/strings_russian.txt Diff File
mod - lang/strings_swedish.txt Diff File
mod - plugins/MantisCoreFormatting/lang/strings_swedish.txt Diff File

master 3250b6d3

2026-04-23 08:09

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - lang/strings_belarusian_tarask.txt Diff File

master c7a96d3a

2026-04-23 01:35

vboctor

Committer: community


Details Diff
Merge pull request #2205 from vboctor/issue37012_use_user_delete_cmd

Fix REST API user self deletion + update web UI to use REST API

Fixes 0037012
Affected Issues
0037012
mod - account_delete.php Diff File
mod - core/commands/UserDeleteCommand.php Diff File
mod - tests/rest/RestUserTest.php Diff File

master 4127677b

2026-04-23 01:28

vboctor

Committer: community


Details Diff
Merge pull request #2204 from vboctor/issue37008_summary_length

Fix API error when summary is too long

Fixes 0037008
Affected Issues
0037008
mod - core/bug_api.php Diff File
mod - core/constant_inc.php Diff File
mod - tests/rest/RestIssueTest.php Diff File
mod - tests/soap/IssueAddTest.php Diff File
mod - tests/soap/IssueUpdateTest.php Diff File

master 13bfed65

2026-04-21 09:07

dregad

Committer: community


Details Diff
Remove $g_cookie_secure_flag_enabled global var

With the introduction of http_is_https_protocol() function [1], this
global variable is not really needed anymore, as we can simply call
the function whenever we need to set a cookie's secure flag.

Fixes 0037007 (PR https://github.com/mantisbt/mantisbt/pull/2202)

[1]: see commit f39ad8c9816fefd36747630d25b7355265eaacc5
Affected Issues
0037007
mod - core/gpc_api.php Diff File
mod - core/session_api.php Diff File

master 2ec47824

2026-04-20 08:10

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - plugins/MantisGraph/lang/strings_korean.txt Diff File

master 6b0a0198

2026-04-18 05:31

dregad


Details Diff
Fix recursion in require_api() and require_lib()

Merge PR https://github.com/mantisbt/mantisbt/pull/2207
mod - core.php Diff File

master a33ff537

2026-04-17 06:36

dregad


Details Diff
Merge branch 'master-2.28'
mod - admin/check/check_email_inc.php Diff File
mod - admin/check/check_php_inc.php Diff File
mod - core/tag_api.php Diff File

master-2.28 872f853e

2026-04-17 06:34

dregad


Details Diff
Fix PHP supported version admin check

When PHP_SUPPORTED_VERSION is defined as X.Y (no patch version), which
is the normal use case, and PHP_VERSION is on the minor defined (e.g.
8.5.4 for supported 8.5), the version check incorrectly reports a
warning, because 8.5.4 > 8.5.

Fixed the check by appending `.999` to the supported version, cover the
case when PHP_SUPPORTED_VERSION includes a patch number, and adjust the
information message.

Fixes 0036540
Affected Issues
0036540, 0037024
mod - admin/check/check_php_inc.php Diff File

master-2.28 daf676b9

2026-04-17 06:31

dregad


Details Diff
Fix PHP 8.5 deprecation warning in admin checks

Using null as an array offset is deprecated, use an empty string instead

Fixes 0037023
Affected Issues
0037023
mod - admin/check/check_email_inc.php Diff File

master 514549f3

2026-04-16 08:07

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - lang/strings_arabic.txt Diff File
mod - plugins/MantisCoreFormatting/lang/strings_arabic.txt Diff File

master-2.28 1cc10355

2026-04-15 11:30

raspopov

Committer: dregad


Details Diff
Fix Undefined array key error

The tag_bug_get_row() and tag_bug_get_attached() functions generated a
PHP error when an unknown issue ID was provided, preventing the proper
error message from being displayed.

Fixes 0037022, PR https://github.com/mantisbt/mantisbt/pull/2208
Affected Issues
0037022
mod - core/tag_api.php Diff File

master 34bbf8f5

2026-04-15 11:05

raspopov

Committer: dregad


Details Diff
Fix require_lib() in the same way

Also arrays has been formatted.

Fixes 0037018
Affected Issues
0037018
mod - core.php Diff File

master 3b3a08a6

2026-04-13 08:08

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net. [skip ci]
mod - lang/strings_dutch.txt Diff File
mod - lang/strings_luxembourgish.txt Diff File
mod - plugins/MantisCoreFormatting/lang/strings_upper_sorbian.txt Diff File

master aa457879

2026-04-12 12:48

dregad


Details Diff
Allow inline display of WebP images

Fixes 0026738
Affected Issues
0026738
mod - file_download.php Diff File

master 87fdaa05

2026-04-12 09:24

raspopov

Committer: dregad


Details Diff
Fix extra require_once() calls from require_api()

To prevent recursive calls to the require_api() function, move
the loading flag after require_once() to before it.

Fixes 0037018.
Affected Issues
0037018
mod - core.php Diff File
1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 700 ... 743 744 745  Next  Last