Changesets: MantisBT
|
master-2.0.x e4e6cc65 2012-08-09 22:36 Paul Richards Details Diff |
remove unused variable | ||
| mod - bug_update_page.php | Diff File | ||
|
master-2.0.x 563c882a 2012-08-09 22:26 Paul Richards Details Diff |
fix undefined array error | ||
| mod - core/gpc_api.php | Diff File | ||
|
master-2.0.x 925cac33 2012-08-09 22:26 Paul Richards Details Diff |
oops | ||
| mod - account_manage_columns_page.php | Diff File | ||
|
master-1.2.x e05334c8 2012-08-09 22:06 Details Diff |
Fix 0014574: MSSQL server 2005 as minimum version |
Affected Issues 0014574 |
|
| mod - admin/install.php | Diff File | ||
| mod - docbook/administration_guide/en/installation.sgml | Diff File | ||
|
master 5a1b0586 2012-08-09 22:06 Details Diff |
Fix 0014574: MSSQL server 2005 as minimum version |
Affected Issues 0014574 |
|
| mod - admin/install.php | Diff File | ||
| mod - docbook/Admin_Guide/en-US/Installation.xml | Diff File | ||
|
master-1.2.x a3432fd9 2012-08-09 08:52 Damien Regad Details Diff |
Move error checking code to beginning of file_add() function | ||
| mod - core/file_api.php | Diff File | ||
|
master 45971e9c 2012-08-09 08:52 Damien Regad Details Diff |
Move error checking code to beginning of file_add() function | ||
| mod - core/file_api.php | Diff File | ||
|
master 4c4e658d 2012-08-09 08:49 Details Diff |
api soap: correct usage of bugnote_set_view_state Fixes 0014573: Updating an issue's view state always sets it to private Conflicts: tests/soap/IssueNoteTest.php |
Affected Issues 0014573 |
|
| mod - api/soap/mc_issue_api.php | Diff File | ||
| mod - tests/soap/IssueNoteTest.php | Diff File | ||
|
master-1.2.x 938ce311 2012-08-09 08:47 Details Diff |
api soap: correct usage of bugnote_set_view_state Fixes 0014573: Updating an issue's view state always sets it to private |
Affected Issues 0014573 |
|
| mod - api/soap/mc_issue_api.php | Diff File | ||
| mod - tests/soap/IssueNoteTest.php | Diff File | ||
|
master-1.2.x 3008c7f7 2012-08-09 08:36 Damien Regad Details Diff |
Fix encoding of BLOB columns The db_prepare_binary_string() function was designed for use with db_query(), and therefore used to surround the binary string to encode with single quotes. Use of db_query_bound() with the function's return value would result in a corrupted attachment because the quotes would be treated as integral part of the binary data. MySQL does not require any special encoding (except regular string processing which is already done by db_query_bound()). For PostgreSQL, instead of calling pg_escape_bytea() directly, we now use ADOdb connection's BlobEncode() method. MSSQL encoding was left as is was (no test platform available). Based on documentation, Oracle (oci8) should not require any encoding either, but was not tested either. Fixes 0012955 |
Affected Issues 0012955 |
|
| mod - core/database_api.php | Diff File | ||
|
master c67920ce 2012-08-09 08:36 Damien Regad Details Diff |
Fix encoding of BLOB columns The db_prepare_binary_string() function was designed for use with db_query(), and therefore used to surround the binary string to encode with single quotes. Use of db_query_bound() with the function's return value would result in a corrupted attachment because the quotes would be treated as integral part of the binary data. MySQL does not require any special encoding (except regular string processing which is already done by db_query_bound()). For PostgreSQL, instead of calling pg_escape_bytea() directly, we now use ADOdb connection's BlobEncode() method. MSSQL encoding was left as is was (no test platform available). Based on documentation, Oracle (oci8) should not require any encoding either, but was not tested either. Fixes 0012955 |
||
| mod - core/database_api.php | Diff File | ||
|
master-1.2.x 4f4e69bd 2012-08-09 04:52 Damien Regad Details Diff |
Use bind variables in file_add() function Use of db_query() in file_add() is causing issues on Oracle due to the size of literal SQL statements being limited to 2000 chars: error ORA-01704 occurs when attaching files with DB storage. To avoid the problem, bind variables must be used. We now call db_query_bound() instead of db_query(), and file_add() has been refactored to remove usage of deprecated db_prepare_* functions. Fixes 0014563 |
Affected Issues 0014563 |
|
| mod - core/file_api.php | Diff File | ||
|
master 1a183fe1 2012-08-09 04:52 Damien Regad Details Diff |
Use bind variables in file_add() function Use of db_query() in file_add() is causing issues on Oracle due to the size of literal SQL statements being limited to 2000 chars: error ORA-01704 occurs when attaching files with DB storage. To avoid the problem, bind variables must be used. We now call db_query_bound() instead of db_query(), and file_add() has been refactored to remove usage of deprecated db_prepare_* functions. Fixes 0014563 |
Affected Issues 0014563 |
|
| mod - core/file_api.php | Diff File | ||
|
master-1.2.x e400ed4c 2012-08-09 03:03 Details Diff |
Localisation updates from http://translatewiki.net. | ||
| mod - lang/strings_galician.txt | Diff File | ||
| mod - lang/strings_korean.txt | Diff File | ||
| mod - lang/strings_latvian.txt | Diff File | ||
| mod - lang/strings_serbian.txt | Diff File | ||
| mod - lang/strings_slovak.txt | Diff File | ||
|
master-2.0.x 9c58c6d1 2012-08-09 02:43 Paul Richards Details Diff |
Fix 0014418: Alternate text for logo image is hardcoded | ||
| mod - core/html_api.php | Diff File | ||
|
master-2.0.x 70e798bb 2012-08-09 02:39 Paul Richards Details Diff |
Use .prop() instead of .attr() where appropriate | ||
| mod - static/javascript/common.js | Diff File | ||
|
master-1.2.x d63864fa 2012-08-09 01:02 Damien Regad Details Diff |
Backport changes to file_add() function from master Align with changes from 84017535f8718685d755d58af7a39d80f52ffca8 to ease future code maintenance. |
||
| mod - core/file_api.php | Diff File | ||
|
master-1.2.x e1bee761 2012-08-09 00:12 Damien Regad Details Diff |
Revised PHPdoc for file_add() function | ||
| mod - core/file_api.php | Diff File | ||
|
master a82d0200 2012-08-09 00:12 Damien Regad Details Diff |
Revised PHPdoc for file_add() function | ||
| mod - core/file_api.php | Diff File | ||
|
master-2.0.x e32bab20 2012-08-08 23:56 Paul Richards Details Diff |
move signal for EVENT_BUGNOTE_DELETED into core api | ||
| mod - bugnote_delete.php | Diff File | ||
| mod - core/bugnote_api.php | Diff File | ||
|
master-2.0.x 3c22b4f6 2012-08-08 23:53 Paul Richards Details Diff |
Move event_signal into core api - this means the event will get fired automatically if any plugin etc uses creates a new project version | ||
| mod - core/version_api.php | Diff File | ||
| mod - manage/proj_ver_add.php | Diff File | ||
| mod - manage/proj_ver_copy.php | Diff File | ||
|
master-2.0.x 0d08e819 2012-08-08 12:25 Paul Richards Details Diff |
1) remove unused codeblock from tag_update.php 2) add to tag api a shortcut to not run database query if nothing has changed on the tag. |
||
| mod - core/tag_api.php | Diff File | ||
| mod - tag_update.php | Diff File | ||
|
master-2.0.x 84c62cd6 2012-08-08 11:42 Paul Richards Details Diff |
In this case, we can do a form get request and skip the extra http request for a redirect | ||
| mod - core/html_api.php | Diff File | ||
| rm - jump_to_bug.php | Diff | ||
|
master-1.2.x e0cf86d3 2012-08-07 05:28 Damien Regad Details Diff |
Whitespace fixes | ||
| mod - core/file_api.php | Diff File | ||
| mod - proj_doc_update.php | Diff File | ||
|
master 9397dd91 2012-08-07 05:28 Damien Regad Details Diff |
Whitespace fixes | ||
| mod - core/file_api.php | Diff File | ||