Changesets: MantisBT

next 1dddee21

2011-09-09 19:29

dhx


Details Diff
Implement SessionInvalid exception
add - application/MantisBT/Exception/Session/SessionInvalid.php Diff File
mod - application/core/session_api.php Diff File

next d4bf2a78

2011-09-09 19:29

dhx


Details Diff
Implement SessionInvalid exception
add - application/MantisBT/Exception/Session/SessionInvalid.php Diff File
mod - application/core/session_api.php Diff File

next 68c07de9

2011-09-09 19:29

dhx


Details Diff
Implement SessionInvalid exception
add - application/MantisBT/Exception/Session/SessionInvalid.php Diff File
mod - application/core/session_api.php Diff File

next 4c1c390c

2011-09-09 19:24

dhx


Details Diff
Implement SessionHandlerInvalid exception
add - application/MantisBT/Exception/Session/SessionHandlerInvalid.php Diff File
mod - application/core/session_api.php Diff File

next d073142c

2011-09-09 19:24

dhx


Details Diff
Implement SessionHandlerInvalid exception
add - application/MantisBT/Exception/Session/SessionHandlerInvalid.php Diff File
mod - application/core/session_api.php Diff File

next 7339a7ed

2011-09-09 19:24

dhx


Details Diff
Implement SessionHandlerInvalid exception
add - application/MantisBT/Exception/Session/SessionHandlerInvalid.php Diff File
mod - application/core/session_api.php Diff File

next 7c5a3b4b

2011-09-09 19:22

dhx


Details Diff
Implement SessionVariableNotFound exception
add - application/MantisBT/Exception/Session/SessionVariableNotFound.php Diff File
mod - application/core/session_api.php Diff File

next b2b06bf7

2011-09-09 19:22

dhx


Details Diff
Implement SessionVariableNotFound exception
add - application/MantisBT/Exception/Session/SessionVariableNotFound.php Diff File
mod - application/core/session_api.php Diff File

next eb3507d2

2011-09-09 19:22

dhx


Details Diff
Implement SessionVariableNotFound exception
add - application/MantisBT/Exception/Session/SessionVariableNotFound.php Diff File
mod - application/core/session_api.php Diff File

next 00efe7bd

2011-09-09 19:13

dhx


Details Diff
Implement TagNameInvalid exception
add - application/MantisBT/Exception/Tag/TagNameInvalid.php Diff File
mod - application/core/tag_api.php Diff File

next 3d068dd7

2011-09-09 19:13

dhx


Details Diff
Implement TagNameInvalid exception
add - application/MantisBT/Exception/Tag/TagNameInvalid.php Diff File
mod - application/core/tag_api.php Diff File

next 57784e27

2011-09-09 19:13

dhx


Details Diff
Implement TagNameInvalid exception
add - application/MantisBT/Exception/Tag/TagNameInvalid.php Diff File
mod - application/core/tag_api.php Diff File

next 5ce97b56

2011-09-09 19:07

dhx


Details Diff
Implement TagNameNotUnique exception
add - application/MantisBT/Exception/Tag/TagNameNotUnique.php Diff File
mod - application/core/tag_api.php Diff File

next 83445343

2011-09-09 19:07

dhx


Details Diff
Implement TagNameNotUnique exception
add - application/MantisBT/Exception/Tag/TagNameNotUnique.php Diff File
mod - application/core/tag_api.php Diff File

next d9df1b5e

2011-09-09 19:07

dhx


Details Diff
Implement TagNameNotUnique exception
add - application/MantisBT/Exception/Tag/TagNameNotUnique.php Diff File
mod - application/core/tag_api.php Diff File

next be09b397

2011-09-09 18:58

dhx


Details Diff
Implement TagNotFound exception
add - application/MantisBT/Exception/Tag/TagNotFound.php Diff File
mod - application/core/tag_api.php Diff File

next 4869aeea

2011-09-09 18:58

dhx


Details Diff
Implement TagNotFound exception
add - application/MantisBT/Exception/Tag/TagNotFound.php Diff File
mod - application/core/tag_api.php Diff File

next 4869ed67

2011-09-09 18:58

dhx


Details Diff
Implement TagNotFound exception
add - application/MantisBT/Exception/Tag/TagNotFound.php Diff File
mod - application/core/tag_api.php Diff File

master-1.2.x efb8b6b8

2011-09-09 10:25

dregad


Details Diff
Support for multi-dimentional arrays in admin_config_set.php

This commit adds support for multi-dimentional arrays, as well as
correct handling of commas and '=>' within strings.

This is based on work by jspezeski; the original code was modified to
align with MantisBT coding guidelines, simplification of the recursive
function and fixing a couple of errors in regex.

Fixes 0013298
Affected Issues
0013298
mod - adm_config_set.php Diff File

master 8b98640d

2011-09-09 10:25

dregad


Details Diff
Support for multi-dimentional arrays in admin_config_set.php

This commit adds support for multi-dimentional arrays, as well as
correct handling of commas and '=>' within strings.

This is based on work by jspezeski; the original code was modified to
align with MantisBT coding guidelines, simplification of the recursive
function and fixing a couple of errors in regex.

Fixes 0013298
Affected Issues
0013298
mod - adm_config_set.php Diff File

master-2.0.x 8c25d5f9

2011-09-09 09:52

Paul Richards


Details Diff
Fix typo in ldap documentation
mod - config_defaults_inc.php Diff File

master-2.0.x d39e5df7

2011-09-09 09:32

Paul Richards


Details Diff
Tidy up utility api
mod - core/utility_api.php Diff File
mod - signup.php Diff File
mod - signup_page.php Diff File

master-1.2.x 5835572f

2011-09-08 20:17

dregad


Details Diff
Fix 0013280: Incorrect queries logged when sorting by custom field having accented chars

The offsets returned by preg_match are byte-based, which causes issues with
UTF-8 characters as the subsequent calls to utf8_substr operate on the wrong
part of the string; this results in logging of invalid SQL queries when
$g_show_queries_list = ON.

This commit fixes the problem by realigning the offsets prior to performing the
query parameter substitution.

It also simplifies the code by removing parenthesis in the regexp pattern,
which is not necessary since we are only matching a single element, this way
there is no need to deal with a multi-dimentional array.
Affected Issues
0013280
mod - core/database_api.php Diff File

master 36a34464

2011-09-08 20:17

dregad


Details Diff
Fix 0013280: Incorrect queries logged when sorting by custom field having accented chars

The offsets returned by preg_match are byte-based, which causes issues with
UTF-8 characters as the subsequent calls to utf8_substr operate on the wrong
part of the string; this results in logging of invalid SQL queries when
$g_show_queries_list = ON.

This commit fixes the problem by realigning the offsets prior to performing the
query parameter substitution.

It also simplifies the code by removing parenthesis in the regexp pattern,
which is not necessary since we are only matching a single element, this way
there is no need to deal with a multi-dimentional array.
Affected Issues
0013280
mod - core/database_api.php Diff File

master-2.0.x 53f81844

2011-09-05 09:06

Paul Richards


Details Diff
Remove unreachable code [spotted by dhx]
mod - config_defaults_inc.php Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 400 401 402 403 404 405 406 ... 420 ... 490 ... 560 ... 630 ... 700 ... 746 747 748  Next  Last