Changesets: MantisBT
|
master-2.23 f5292645 2020-01-07 11:58 Details Diff |
Fix field display on "View Issue" page Fixes 0026482 |
Affected Issues 0026482 |
|
| mod - bug_view_inc.php | Diff File | ||
|
master 6f54b7f5 2020-01-07 05:33 Details Diff |
Fix various JSLint warnings | ||
| mod - js/install.js | Diff File | ||
|
master 2b98c4e4 2020-01-07 05:32 Details Diff |
Install: fix default prefix change by DB type The JavaScript that changes the default table prefix/suffix based on database type and populates the sample table name fields was broken because multiple DOM elements with the same id existed on the page (2 sets of hidden <span> for the default values, and the 3 <input>). Changing the markup for the <span> to set a class instead of an id, and ajusting the script fixed the problem. Fixes 0026596 |
Affected Issues 0026596 |
|
| mod - admin/install.php | Diff File | ||
| mod - js/install.js | Diff File | ||
|
master 41da472e 2020-01-06 07:00 translatewiki.net Details Diff |
Localisation updates from https://translatewiki.net. | ||
| mod - lang/strings_macedonian.txt | Diff File | ||
| mod - lang/strings_turkish.txt | Diff File | ||
| mod - plugins/MantisGraph/lang/strings_turkish.txt | Diff File | ||
|
master 53038ce9 2020-01-06 05:10 Details Diff |
Install: improve layout of "DB not ready" message Use an alert-danger div and some formatting to print a nicely formatted message to inform the admin that the DB has not yet been created after generating the SQL script. Fixes 0026663 |
Affected Issues 0026663 |
|
| mod - admin/install.php | Diff File | ||
|
master 1198e835 2020-01-06 05:08 Details Diff |
Install: print disclaimer when generating SQL Display a warning to inform the admin that the database may not be installed properly when created/updated via the generated SQL script. Fixes 0026663 |
Affected Issues 0026663 |
|
| mod - admin/install.php | Diff File | ||
|
master ad05c04e 2020-01-06 05:04 Details Diff |
Install: improve generated SQL script The script generated by the installer when printing SQL queries instead of writing to the database has been improved with comments, as follows: - Header indicating MantisBT version and date of generation - Schema step number before each SQL statement(s) - For UpdateFunction steps, print the PHP function to execute, with arguments - Empty upgrade steps are indicated as "No Operation" - Set database version Fixes 0026661, 0026662 |
Affected Issues 0026661, 0026662 |
|
| mod - admin/install.php | Diff File | ||
|
master 412f855f 2020-01-06 04:54 Details Diff |
Use UPDATE/INSERT to update DB schema When the installer is used to generate SQL instead of directly creating the database, the last statement printed was a hardcoded INSERT to create the database_version key in the config table. This did not consider the case of an upgrade, where the record already exists, so running the script as-is caused a duplicate key SQL error. Since the installer knows whether it is installing a new database or upgrading an existing one, an UPDATE statement should be generated instead in the latter case. Fixes 0026568 |
Affected Issues 0026568 |
|
| mod - admin/install.php | Diff File | ||
|
master 85a30e9a 2020-01-06 04:49 Details Diff |
Fix DB prefix/suffix init for new Mantis installs When installing a new MantisBt instance, the installer pre-fills the database prefix, plugin-prefix and suffix inputs. Due to a bug in the code, all 3 fields were set to the value of db_table_prefix ('mantis' by default), resulting in the installer creating tables like 'mantis_bug_mantis` or 'mantis_mantis_xxx_mantis' instead of 'mantis_bug_table' or 'mantis_plugin_xxx_table' unless the administrator noticed and fixed the values before launching the install. Adjust the code that initializes the inputs to use the correct values (db_table_plugin_prefix, db_table_suffix). Fixes 0026596 |
Affected Issues 0026596 |
|
| mod - admin/install.php | Diff File | ||
|
master 49f84025 2020-01-05 02:49 Details Diff |
Use always auth_anonymous_account() to get name of anonymous account Issue 0026567 |
Affected Issues 0026567 |
|
| mod - login_anon.php | Diff File | ||
|
master e153b89e 2020-01-05 02:19 Details Diff |
Remove unused global variable declarations Issue 0026567 |
Affected Issues 0026567 |
|
| mod - core/version_api.php | Diff File | ||
|
master 855c0d15 2020-01-03 11:15 Details Diff |
Remove unused function parameter Issue 0026567 |
Affected Issues 0026567 |
|
| mod - core/collapse_api.php | Diff File | ||
|
master a6b919bd 2020-01-03 10:26 Details Diff |
Remove unused local variables Issue 0026567 |
Affected Issues 0026567 |
|
| mod - api/soap/mc_issue_api.php | Diff File | ||
| mod - bug_view_inc.php | Diff File | ||
| mod - core/columns_api.php | Diff File | ||
| mod - core/filter_api.php | Diff File | ||
| mod - core/plugin_api.php | Diff File | ||
| mod - core/print_api.php | Diff File | ||
| mod - core/project_api.php | Diff File | ||
| mod - core/tag_api.php | Diff File | ||
| mod - plugins/MantisGraph/core/graph_api.php | Diff File | ||
|
master edf65818 2020-01-03 08:51 Details Diff |
Remove unnecessary semicolons Issue 0026567 |
Affected Issues 0026567 |
|
| mod - api/rest/restcore/internal_rest.php | Diff File | ||
| mod - core/custom_function_api.php | Diff File | ||
| mod - core/email_queue_api.php | Diff File | ||
| mod - signup_page.php | Diff File | ||
|
master 778816b5 2020-01-02 09:59 Details Diff |
PHPDoc fixes Issue 0026567 |
Affected Issues 0026567 |
|
| mod - core/history_api.php | Diff File | ||
| mod - core/project_api.php | Diff File | ||
| mod - core/user_api.php | Diff File | ||
| mod - core/version_api.php | Diff File | ||
| mod - plugins/MantisGraph/core/graph_api.php | Diff File | ||
|
master c59863c3 2020-01-02 08:44 Details Diff |
Use config_get_global for options dot_tool and neato_tool Since fix of 0026091 dot_tool and neato_tool can no longer be set in database. config_get_global is now used instead of config_get like it's done for other options lisetd in $g_global_settings Issue 0026567 |
Affected Issues 0026567 |
|
| mod - core/relationship_graph_api.php | Diff File | ||
| mod - workflow_graph_img.php | Diff File | ||
|
master fcf454c1 2020-01-02 08:15 Details Diff |
Fix usage of reporter_summary_limit on summary page "Reporter Stats" section on summary page displayed one more row than set in option reporter_summary_limit. Fixes 0026555 |
Affected Issues 0026555 |
|
| mod - core/summary_api.php | Diff File | ||
|
master 76a7c3b4 2020-01-02 03:50 translatewiki.net Details Diff |
Localisation updates from https://translatewiki.net. | ||
| mod - lang/strings_persian.txt | Diff File | ||
| mod - lang/strings_turkish.txt | Diff File | ||
| mod - plugins/MantisGraph/lang/strings_persian.txt | Diff File | ||
|
master 85207aff 2019-12-30 20:45 translatewiki.net Details Diff |
Localisation updates from https://translatewiki.net. | ||
| mod - lang/strings_spanish.txt | Diff File | ||
|
dependabot/composer/erusev/parsedown-1.7.4 7909516e 2019-12-30 19:53 dependabot-preview[bot] Committer: GitHub Details Diff |
Bump erusev/parsedown from 1.7.3 to 1.7.4 Bumps [erusev/parsedown](https://github.com/erusev/parsedown) from 1.7.3 to 1.7.4. - [Release notes](https://github.com/erusev/parsedown/releases) - [Commits](https://github.com/erusev/parsedown/compare/1.7.3...1.7.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> |
||
| mod - composer.lock | Diff File | ||
|
master a143f38e 2019-12-26 12:44 Details Diff |
Add 'due_date_warning_levels' to public configs | ||
| mod - config_defaults_inc.php | Diff File | ||
|
master 8dc424d7 2019-12-26 12:39 dependabot-preview[bot] Committer: dregad Details Diff |
Bump guzzlehttp/guzzle from 6.5.0 to 6.5.2 Bumps [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) from 6.5.0 to 6.5.2. - [Release notes](https://github.com/guzzle/guzzle/releases) - [Changelog](https://github.com/guzzle/guzzle/blob/6.5.2/CHANGELOG.md) - [Commits](https://github.com/guzzle/guzzle/compare/6.5.0...6.5.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Fixes 0026441 PR https://github.com/mantisbt/mantisbt/pull/1602 |
Affected Issues 0026441 |
|
| mod - composer.lock | Diff File | ||
|
master 71d5b9d3 2019-12-26 06:24 Details Diff |
Merge branch 'master-2.23' | ||
| mod - api/soap/mc_api.php | Diff File | ||
|
master b2506fec 2019-12-26 03:21 Details Diff |
Fix PHPDoc in mc_issue_api.php | ||
| mod - api/soap/mc_issue_api.php | Diff File | ||
|
master 2838385c 2019-12-26 01:51 translatewiki.net Details Diff |
Localisation updates from https://translatewiki.net. | ||
| mod - lang/strings_japanese.txt | Diff File | ||
| mod - lang/strings_portuguese_standard.txt | Diff File | ||
| mod - lang/strings_qqq.txt | Diff File | ||