Changesets: MantisBT
master 35832103 2009-08-18 21:32 Details Diff |
Fix 0010817: View status column shows integer instead of icon When setting the view_status column within account_manage_columns_page, the view issues list only shows the integer value of the view_status field. This correction will ensure that the protected/padlock icon is shown for private issues. For public issues, no icon is shown. The protected/padlock icon has been removed from the end of the summary column as it is duplicated by this now working view_status column. The view_status column is also now sortable, which makes it a little bit easier to find all the private issues at once. |
Affected Issues 0010817 |
|
mod - core/columns_api.php | Diff File | ||
mod - css/default.css | Diff File | ||
master-1.2.x e58acd93 2009-08-17 13:11 Chris Fitch Committer: dhx Details Diff |
Fix 0010844: bugnote id not showing on view bugnote revisions page When viewing a bugnote revision page, the user will always see "View Revisions: Note 0" where the 0 should actually be the relevant bugnote ID. This error is caused by trying to use the non-existant bug_id where we should be using f_bugnote_id. Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0010844 |
|
mod - bug_revision_view_page.php | Diff File | ||
master a178518c 2009-08-17 13:11 Chris Fitch Committer: dhx Details Diff |
Fix 0010844: bugnote id not showing on view bugnote revisions page When viewing a bugnote revision page, the user will always see "View Revisions: Note 0" where the 0 should actually be the relevant bugnote ID. This error is caused by trying to use the non-existant bug_id where we should be using f_bugnote_id. Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0010844 |
|
mod - bug_revision_view_page.php | Diff File | ||
master-1.2.x 5d715a48 2009-08-08 00:04 Details Diff |
Fix 0010816: projection column shows integer value When you enable the projection column through account_manage_columns_page, the view issues list only shows the integer value of the projection field rather than the string/text value. This fixes the problem by adding the missing print_column_projection function that does the integer value -> enum string lookup. |
Affected Issues 0010816 |
|
mod - core/columns_api.php | Diff File | ||
master 1d3f8617 2009-08-08 00:04 Details Diff |
Fix 0010816: projection column shows integer value When you enable the projection column through account_manage_columns_page, the view issues list only shows the integer value of the projection field rather than the string/text value. This fixes the problem by adding the missing print_column_projection function that does the integer value -> enum string lookup. |
Affected Issues 0010816 |
|
mod - core/columns_api.php | Diff File | ||
master-1.2.x 82dfe744 2009-08-07 23:50 Details Diff |
Fix 0010815: hide some internal fields from columns_api It is possible through account_manage_columns_page.php (and elsewhere) to view columns such as '_stats', 'profile_id', 'sticky' and 'loading' which are either just internal bits of data (not intended to be seen by the user) or in the case of 'sticky', are for internal display purposes only. These unnecessary columns should not be exposed through columns_api. |
Affected Issues 0010815 |
|
mod - core/columns_api.php | Diff File | ||
master dccaf9aa 2009-08-07 23:50 Details Diff |
Fix 0010815: hide some internal fields from columns_api It is possible through account_manage_columns_page.php (and elsewhere) to view columns such as '_stats', 'profile_id', 'sticky' and 'loading' which are either just internal bits of data (not intended to be seen by the user) or in the case of 'sticky', are for internal display purposes only. These unnecessary columns should not be exposed through columns_api. |
Affected Issues 0010815 |
|
mod - core/columns_api.php | Diff File | ||
master-1.2.x 6db161f1 2009-08-07 23:31 Details Diff |
Fix 0010814: reproducibility column undefined variable error When adding the reproducibility column to the view issues list, an undefined $p_bug variable error occurs. This is just a simple case of the first argument to print_column_reproducibility having the wrong name (most likely it was missed during an earlier upgrade to bug_api). |
Affected Issues 0010814 |
|
mod - core/columns_api.php | Diff File | ||
master 5eb124ea 2009-08-07 23:31 Details Diff |
Fix 0010814: reproducibility column undefined variable error When adding the reproducibility column to the view issues list, an undefined $p_bug variable error occurs. This is just a simple case of the first argument to print_column_reproducibility having the wrong name (most likely it was missed during an earlier upgrade to bug_api). |
Affected Issues 0010814 |
|
mod - core/columns_api.php | Diff File | ||
master 7559cfad 2009-08-07 11:08 Details Diff |
Localisation updates from translatewiki.net (2009-08-07) | ||
mod - plugins/MantisCoreFormatting/lang/strings_german.txt | Diff File | ||
mod - plugins/XmlImportExport/lang/strings_swissgerman.txt | Diff File | ||
add - plugins/MantisCoreFormatting/lang/strings_hebrew.txt | Diff File | ||
add - plugins/MantisGraph/lang/strings_german.txt | Diff File | ||
mod - plugins/XmlImportExport/lang/strings_german.txt | Diff File | ||
mod - plugins/XmlImportExport/lang/strings_ripoarisch.txt | Diff File | ||
master 289c15ee 2009-08-07 10:58 Details Diff |
Localisation updates from translatewiki.net (2009-08-07) | ||
mod - lang/strings_russian.txt | Diff File | ||
mod - lang/strings_norwegian_bokmal.txt | Diff File | ||
mod - lang/strings_hungarian.txt | Diff File | ||
mod - lang/strings_finnish.txt | Diff File | ||
mod - lang/strings_estonian.txt | Diff File | ||
mod - lang/strings_japanese.txt | Diff File | ||
mod - lang/strings_swedish.txt | Diff File | ||
mod - lang/strings_german.txt | Diff File | ||
mod - lang/strings_ripoarisch.txt | Diff File | ||
mod - lang/strings_qqq.txt | Diff File | ||
mod - lang/strings_dutch.txt | Diff File | ||
mod - lang/strings_occitan.txt | Diff File | ||
mod - lang/strings_french.txt | Diff File | ||
master-1.2.x a5cc3eb1 2009-08-07 09:50 Details Diff |
Fix 0010650: email_on_new preference has no effect The notification preferences weren't working correctly due to a range of bugs and poor architecture within email_api. This fix cleans up a bit of the mess and in the process, ensures that email_on_new and other user customisable statuses once again are taken into consideration. |
Affected Issues 0010650 |
|
mod - core/email_api.php | Diff File | ||
master 33a8395e 2009-08-07 09:50 Details Diff |
Fix 0010650: email_on_new preference has no effect The notification preferences weren't working correctly due to a range of bugs and poor architecture within email_api. This fix cleans up a bit of the mess and in the process, ensures that email_on_new and other user customisable statuses once again are taken into consideration. |
Affected Issues 0010650 |
|
mod - core/email_api.php | Diff File | ||
master-1.2.x fd39c78b 2009-08-07 03:08 Details Diff |
Fix 0010687: Force use of account_delete when deleting own account The case of deleting ones own account is quite different to deleting the account of another user. Therefore if an administrator wants to delete their own account, account_delete.php should be used instead. It correctly handles logging out and redirection of the administrator who has just deleted their own account. This fix will force account_delete.php to be used in a way that is transparent to an administrator who is deleting their account. For the purpose of this commit message, "administrator" is any user who has an access level equal to or beyond manage_user_threshold. |
Affected Issues 0010687 |
|
mod - account_delete.php | Diff File | ||
mod - manage_user_delete.php | Diff File | ||
master f27b0e9c 2009-08-07 03:08 Details Diff |
Fix 0010687: Force use of account_delete when deleting own account The case of deleting ones own account is quite different to deleting the account of another user. Therefore if an administrator wants to delete their own account, account_delete.php should be used instead. It correctly handles logging out and redirection of the administrator who has just deleted their own account. This fix will force account_delete.php to be used in a way that is transparent to an administrator who is deleting their account. For the purpose of this commit message, "administrator" is any user who has an access level equal to or beyond manage_user_threshold. |
Affected Issues 0010687 |
|
mod - account_delete.php | Diff File | ||
mod - manage_user_delete.php | Diff File | ||
master-1.2.x 1d837ae7 2009-08-07 02:24 Details Diff |
Fix 0010687: call auth_logout before user_delete auth_logout() does stuff that requires a valid user ID. When a user attempts to delete their own account, we should first ensure that they're logged out as per normal. Then we can delete their account as a last step before redirecting them elsehwere. The html headers/footers and redirect message have also been adjusted for ease of use, and to ensure that the user doesn't miss the notice about their account being deleted successfully. |
Affected Issues 0010687 |
|
mod - account_delete.php | Diff File | ||
master dce1691b 2009-08-07 02:24 Details Diff |
Fix 0010687: call auth_logout before user_delete auth_logout() does stuff that requires a valid user ID. When a user attempts to delete their own account, we should first ensure that they're logged out as per normal. Then we can delete their account as a last step before redirecting them elsehwere. The html headers/footers and redirect message have also been adjusted for ease of use, and to ensure that the user doesn't miss the notice about their account being deleted successfully. |
Affected Issues 0010687 |
|
mod - account_delete.php | Diff File | ||
master-1.2.x 17ae3fc0 2009-08-07 01:17 Details Diff |
Fix 0010687: don't allow deletion of the last admin account The last administrator account should be protected from deletion or demotion. It is still possible to delete the last administrator account from the database via way of a raw SQL query if an installation absolutely must not contain any admin accounts. |
Affected Issues 0010687 |
|
mod - manage_user_delete.php | Diff File | ||
mod - account_delete.php | Diff File | ||
mod - lang/strings_english.txt | Diff File | ||
master fe113064 2009-08-07 01:17 Details Diff |
Fix 0010687: don't allow deletion of the last admin account The last administrator account should be protected from deletion or demotion. It is still possible to delete the last administrator account from the database via way of a raw SQL query if an installation absolutely must not contain any admin accounts. |
Affected Issues 0010687 |
|
mod - manage_user_delete.php | Diff File | ||
mod - lang/strings_english.txt | Diff File | ||
mod - account_delete.php | Diff File | ||
master baa88a50 2009-08-07 00:29 Details Diff |
Fix 0010393: SQL query error with hide inactive users filter On manage_user_page there exists a "hide inactive users" filter that was broken due to an invalid SQL query. Thanks to prabhurangan for reporting this issue and tcharron for a solution to the problem. |
Affected Issues 0010393 |
|
mod - manage_user_page.php | Diff File | ||
master-1.2.x 34d3633a 2009-08-07 00:29 Details Diff |
Fix 0010393: SQL query error with hide inactive users filter On manage_user_page there exists a "hide inactive users" filter that was broken due to an invalid SQL query. Thanks to prabhurangan for reporting this issue and tcharron for a solution to the problem. |
Affected Issues 0010393 |
|
mod - manage_user_page.php | Diff File | ||
master-1.2.x 1a38ff7d 2009-08-06 16:20 Details Diff |
Properly handle blank disallowed file extensions | ||
mod - core/file_api.php | Diff File | ||
master 9d98c10b 2009-08-06 12:20 Committer: Paul Richards Details Diff |
Properly handle blank disallowed file extensions | ||
mod - core/file_api.php | Diff File | ||
master bba71f0a 2009-07-30 15:17 Paul Richards Details Diff |
Fix 0010780: language of emails could be wrong in specific situations |
Affected Issues 0010780 |
|
mod - core/user_pref_api.php | Diff File | ||
master-1.2.x d09f09b8 2009-07-30 15:17 Paul Richards Committer: dhx Details Diff |
Fix 0010780: language of emails could be wrong in specific situations Signed-off-by: David Hicks <hickseydr@optusnet.com.au> |
Affected Issues 0010780 |
|
mod - core/user_pref_api.php | Diff File |