Changesets: MantisBT
master 00528a76 2011-07-12 06:22 Details Diff |
Update documented canonical repo URLs to Github | ||
mod - docbook/Developers_Guide/en-US/Contributors.xml | Diff File | ||
master-1.2.x 82bfc7c0 2011-07-12 06:22 Details Diff |
Update documented canonical repo URLs to Github | ||
mod - docbook/developers/en/contributers.sgml | Diff File | ||
master 21c242c6 2011-07-12 06:03 Committer: dhx Details Diff |
Fix 0013007: Moving an issue to a sub-project - default category used Assume project B is a sub-project of project A. When moving an issue with category C (which is assigned to the project A) to project B, the category gets changed to DEFAULT (configured default category) and doesn't respect the fact, that project B is a subproject of A and does inherit the category C. Steps to reproduce this bug: 1. Create two projects: A and B. B is subproject of A 2. Create category C in project A so that B inherits the category. 3. Create issue I in project A 4. Move I to project B 5. Note that I has the default category instead of category C Signed-off-by: David Hicks <d@hx.id.au> |
Affected Issues 0013007 |
|
mod - core/bug_api.php | Diff File | ||
master-1.2.x d0f850da 2011-07-12 06:03 Committer: dhx Details Diff |
Fix 0013007: Moving an issue to a sub-project - default category used Assume project B is a sub-project of project A. When moving an issue with category C (which is assigned to the project A) to project B, the category gets changed to DEFAULT (configured default category) and doesn't respect the fact, that project B is a subproject of A and does inherit the category C. Steps to reproduce this bug: 1. Create two projects: A and B. B is subproject of A 2. Create category C in project A so that B inherits the category. 3. Create issue I in project A 4. Move I to project B 5. Note that I has the default category instead of category C Signed-off-by: David Hicks <d@hx.id.au> |
Affected Issues 0013007 |
|
mod - core/bug_api.php | Diff File | ||
master aa48e0c7 2011-07-12 05:34 Details Diff |
Fix 0012998: Password reset button should be hidden for HTTP_AUTH method If MantisBT is configured with the HTTP_AUTH method for user authentication, passwords cannot be reset by MantisBT. The passwords are managed externally to MantisBT in this instance. Therefore do not offer managers the ability to reset passwords when HTTP_AUTH is set as the authentication mechanism. Thanks to Tino Böhme for reporting this issue and providing a patch. |
Affected Issues 0012998 |
|
mod - manage_user_edit_page.php | Diff File | ||
mod - manage_user_reset.php | Diff File | ||
master-1.2.x 3eaa71f7 2011-07-12 05:34 Details Diff |
Fix 0012998: Password reset button should be hidden for HTTP_AUTH method If MantisBT is configured with the HTTP_AUTH method for user authentication, passwords cannot be reset by MantisBT. The passwords are managed externally to MantisBT in this instance. Therefore do not offer managers the ability to reset passwords when HTTP_AUTH is set as the authentication mechanism. Thanks to Tino Böhme for reporting this issue and providing a patch. |
Affected Issues 0012998 |
|
mod - manage_user_reset.php | Diff File | ||
mod - manage_user_edit_page.php | Diff File | ||
master 95b9991d 2011-07-11 05:08 Damien Regad Committer: dhx Details Diff |
Fix 0013124: Getting time tracking info yields application error Replace occurences of bug_view_page.php by view.php Signed-off-by: David Hicks <d@hx.id.au> |
Affected Issues 0013124 |
|
mod - bug_view_inc.php | Diff File | ||
master-1.2.x d1d05b91 2011-07-11 05:08 Damien Regad Committer: dhx Details Diff |
Fix 0013124: Getting time tracking info yields application error Replace occurences of bug_view_page.php by view.php Signed-off-by: David Hicks <d@hx.id.au> |
Affected Issues 0013124 |
|
mod - bug_view_inc.php | Diff File | ||
master-1.2.x a91f4c90 2011-07-10 21:57 Damien Regad Details Diff |
Fixed incorrect/obsolete comment | ||
mod - core/print_api.php | Diff File | ||
master-1.2.x c3b2321e 2011-07-08 05:04 Damien Regad Details Diff |
Fix 0013124: Getting time tracking info yields application error Replace occurences of bug_view_page.php by view.php |
Affected Issues 0013124 |
|
mod - bug_view_inc.php | Diff File | ||
master-1.2.x c4378b82 2011-07-08 04:55 Damien Regad Details Diff |
Fix 0013132: Print the time tracking information sorted by username Previously the list was printed in whatever order returned by the SQL |
Affected Issues 0013132 |
|
mod - billing_inc.php | Diff File | ||
mod - bugnote_stats_inc.php | Diff File | ||
master d12574f7 2011-07-08 04:55 Damien Regad Details Diff |
Fix 0013132: Print the time tracking information sorted by username Previously the list was printed in whatever order returned by the SQL |
Affected Issues 0013132 |
|
mod - billing_inc.php | Diff File | ||
mod - bugnote_stats_inc.php | Diff File | ||
master-1.2.x b9c63ec6 2011-07-08 04:51 Damien Regad Details Diff |
Fix 0013130: When getting Time Tracking, use anchor to scroll the page to the section |
Affected Issues 0013130 |
|
mod - bugnote_stats_inc.php | Diff File | ||
master-1.2.x c4c0a01e 2011-07-08 04:12 Damien Regad Details Diff |
Fix 0013131: Time tracking prints user/real name depending on $g_show_realname This makes the display of user's name consistent with the rest of MantisBT |
Affected Issues 0013131 |
|
mod - billing_inc.php | Diff File | ||
mod - bugnote_stats_inc.php | Diff File | ||
mod - core/bugnote_api.php | Diff File | ||
master 7c4921e3 2011-07-08 04:12 Damien Regad Details Diff |
Fix 0013131: Time tracking prints user/real name depending on $g_show_realname This makes the display of user's name consistent with the rest of MantisBT |
Affected Issues 0013131 |
|
mod - billing_inc.php | Diff File | ||
mod - bugnote_stats_inc.php | Diff File | ||
mod - core/bugnote_api.php | Diff File | ||
master-1.2.x ecff8136 2011-07-08 03:53 Damien Regad Details Diff |
Initialize the user summary array before calculating the billing total When calculating the user's total time, the use of += operator in the for loop causes the display of an E_NOTICE system error, due to access of an undefined index during the first assignment for a given user. This has no impact when using default values for $g_display_errors since E_NOTICE is set to none. |
||
mod - billing_inc.php | Diff File | ||
master c2f89cac 2011-07-08 03:53 Damien Regad Details Diff |
Initialize the user summary array before calculating the billing total When calculating the user's total time, the use of += operator in the for loop causes the display of an E_NOTICE system error, due to access of an undefined index during the first assignment for a given user. This has no impact when using default values for $g_display_errors since E_NOTICE is set to none. |
||
mod - billing_inc.php | Diff File | ||
master-1.2.x ea0f1fb5 2011-07-07 07:39 Damien Regad Details Diff |
Fix 0013133: Time tracking shows entries for users without actual time spent Modified the SQL used in the function, to filter out bugnote records having time_tracking = 0. This makes the returned data set consistent with the one produced by a similar query used in function bugnote_stats_get_project_array, and bugnote_stats_get_events_array no longer returns records without time tracking |
Affected Issues 0013133 |
|
mod - core/bugnote_api.php | Diff File | ||
master b2586c90 2011-07-07 07:39 Damien Regad Details Diff |
Fix 0013133: Time tracking shows entries for users without actual time spent Modified the SQL used in the function, to filter out bugnote records having time_tracking = 0. This makes the returned data set consistent with the one produced by a similar query used in function bugnote_stats_get_project_array, and bugnote_stats_get_events_array no longer returns records without time tracking |
Affected Issues 0013133 |
|
mod - core/bugnote_api.php | Diff File | ||
master-1.2.x 87041ab3 2011-07-07 05:54 Damien Regad Details Diff |
Modified code indentation and layout to improve readability | ||
mod - billing_inc.php | Diff File | ||
mod - bugnote_stats_inc.php | Diff File | ||
master eb1f8184 2011-07-06 09:08 Damien Regad Committer: rombert Details Diff |
Fix 0013123: Reminder Bug notes display time tracking information This was caused by a missing break statement at the end of the switch case handling Reminder bug notes Signed-off-by: Robert Munteanu <robert.munteanu@gmail.com> |
Affected Issues 0013123 |
|
mod - bugnote_view_inc.php | Diff File | ||
master-1.2.x b924569b 2011-07-06 09:08 Damien Regad Committer: rombert Details Diff |
Fix 0013123: Reminder Bug notes display time tracking information This was caused by a missing break statement at the end of the switch case handling Reminder bug notes Signed-off-by: Robert Munteanu <robert.munteanu@gmail.com> |
Affected Issues 0013123 |
|
mod - bugnote_view_inc.php | Diff File | ||
master-1.2.x d655c4b4 2011-07-01 05:57 Details Diff |
Localisation updates from translatewiki.net. | ||
mod - lang/strings_arabic.txt | Diff File | ||
add - plugins/MantisGraph/lang/strings_belarusian_tarask.txt | Diff File | ||
add - plugins/XmlImportExport/lang/strings_belarusian_tarask.txt | Diff File | ||
add - plugins/MantisGraph/lang/strings_chinese_traditional.txt | Diff File | ||
mod - plugins/MantisGraph/lang/strings_bulgarian.txt | Diff File | ||
mod - lang/strings_chinese_traditional.txt | Diff File | ||
mod - lang/strings_bulgarian.txt | Diff File | ||
add - plugins/MantisCoreFormatting/lang/strings_chinese_traditional.txt | Diff File | ||
mod - lang/strings_lithuanian.txt | Diff File | ||
add - plugins/MantisCoreFormatting/lang/strings_lithuanian.txt | Diff File | ||
mod - lang/strings_norwegian_bokmal.txt | Diff File | ||
mod - lang/strings_french.txt | Diff File | ||
add - plugins/XmlImportExport/lang/strings_chinese_traditional.txt | Diff File | ||
mod - lang/strings_belarusian_tarask.txt | Diff File | ||
mod - lang/strings_macedonian.txt | Diff File | ||
mod - lang/strings_german.txt | Diff File | ||
mod - plugins/MantisGraph/lang/strings_lithuanian.txt | Diff File | ||
mod - lang/strings_czech.txt | Diff File | ||
mod - lang/strings_spanish.txt | Diff File | ||
add - plugins/XmlImportExport/lang/strings_lithuanian.txt | Diff File | ||
master 8500ec92 2011-06-28 10:06 Details Diff |
SOAP API: do not try to unserialize an invalid filter Fixes 0013103: Error when connecting to API via Mylin |
Affected Issues 0013103 |
|
mod - api/soap/mc_api.php | Diff File | ||
master-1.2.x 81a13248 2011-06-28 10:05 Details Diff |
SOAP API: do not try to parse invalid filters Fixes 0013103: Error when connecting to API via Mylin |
Affected Issues 0013103 |
|
mod - api/soap/mc_api.php | Diff File |