Mark Story
|
68082fad02
|
Merge pull request #8207 from CakeDC/feature/uuid
Add support for Postgres native uuid datatype
|
2016-02-16 21:53:08 -05:00 |
|
Seth Tanner
|
c05835d85d
|
refs #8027 combine if statements
|
2016-02-11 01:49:34 +00:00 |
|
mark_story
|
c0d897b45c
|
Merge branch '2.x' into 2.8
|
2016-02-06 20:55:08 -05:00 |
|
mark_story
|
0309c483fb
|
Don't make variables we never use.
|
2016-02-06 20:34:19 -05:00 |
|
Mark Story
|
41a12e9aa2
|
Merge pull request #8067 from cakephp/issue-7906
Make the session cacheLimiter a configuration option.
|
2016-02-06 20:30:48 -05:00 |
|
mark_story
|
d9992bcaca
|
Use safer methods to read session configuration.
Avoid potential undefined index warnings by using read() to safely fetch
data.
Refs #8101
|
2016-01-30 16:21:33 -05:00 |
|
mark_story
|
3b5a71df37
|
Merge branch '2.7' into 2.8
|
2016-01-28 21:51:59 -05:00 |
|
Yevgeny Tomenko
|
70c4e40532
|
Fix value check and formatting.
|
2016-01-28 23:36:07 +03:00 |
|
Pedro Fernandes Steimbruch
|
eaeb7cea9e
|
Refs #7978 fixing regex to take in account IN operator
|
2016-01-28 17:34:08 -02:00 |
|
Yevgeny Tomenko
|
06853a137a
|
Merge remote-tracking branch 'remotes/origin/2.8' into feature/uuid
|
2016-01-28 22:08:10 +03:00 |
|
Yevgeny Tomenko
|
296f698db3
|
Added test cases covering native uuid field usage for Postgres class
|
2016-01-28 21:13:33 +03:00 |
|
Larry E. Masters
|
7c37cf5b5f
|
Using _cookieName() instead session_name()
|
2016-01-19 16:29:56 -06:00 |
|
mark_story
|
57f620fc22
|
Make the session cacheLimiter a configuration option.
Instead of hardcoding to must-revalidate, developers can use a more
suitable option if they do not have to support IE8.
Refs #7096
|
2016-01-18 22:18:38 -05:00 |
|
Seth Tanner
|
47bf98cae4
|
refs # 7929 refactor uuid support to not break Backward Compatibility
|
2016-01-15 11:43:01 -08:00 |
|
Seth Tanner
|
66f3a7e487
|
refs issue #7929 add support for Postgres native uuid datatype
|
2016-01-14 09:37:06 -08:00 |
|
Larry E. Masters
|
0aa8847762
|
Merge pull request #7840 from cakephp/2.8-PHP7
2.8 PHP7 compatibility
|
2015-12-29 00:27:33 -05:00 |
|
Larry E. Masters
|
e7a313edee
|
getting sloppy as I get older, fixing code sniffer errors
|
2015-12-29 00:06:44 -05:00 |
|
Larry E. Masters
|
6ee621011b
|
Using function_exists instead of using constant
|
2015-12-28 23:50:35 -05:00 |
|
Larry E. Masters
|
bc005cd014
|
Fixing Undefined index: Session
|
2015-12-28 23:32:18 -05:00 |
|
Larry E. Masters
|
a1e140cbe0
|
Removing check for set key
|
2015-12-28 23:26:58 -05:00 |
|
Larry E. Masters
|
a966e46545
|
Allowing returning numeric 0 from read
|
2015-12-28 23:26:06 -05:00 |
|
Larry E. Masters
|
a02fb9e771
|
Fixing code sniffer errors
|
2015-12-28 18:40:14 -05:00 |
|
Larry E. Masters
|
a59ea13712
|
Fixes SessionComponentTest::testSessionValid. Refactored _hasSession and other erros on php 7
init would always set CakeSession::$_userAgent.
|
2015-12-28 17:26:35 -05:00 |
|
Larry E. Masters
|
c2449c9d16
|
Fixing Code Sniffer errors
|
2015-12-28 17:15:23 -05:00 |
|
Larry E. Masters
|
33f2f46868
|
Refactoring and emoving one isset check
|
2015-12-28 11:52:19 -05:00 |
|
Larry E. Masters
|
5c3bc44ef5
|
Initial fixes for failing session tests
|
2015-12-28 11:41:23 -05:00 |
|
Larry E. Masters
|
9abb4e19f2
|
Removing forced return true
|
2015-12-22 16:22:34 -05:00 |
|
Larry E. Masters
|
dd11c63069
|
Changing return types
read now returns empty string instead of false when read method returns an empty value.
write, destroy and gc will return boolean type
|
2015-12-22 16:19:51 -05:00 |
|
Larry E. Masters
|
577e1b089f
|
Revert "Forcing bool return"
This reverts commit fac95baee7 .
|
2015-12-14 19:31:08 -06:00 |
|
Larry E. Masters
|
dd211e9158
|
Revert "Changing where bool is returned"
This reverts commit 8f52cefdcc .
|
2015-12-14 19:30:42 -06:00 |
|
Larry E. Masters
|
464a266fc7
|
Revert "Using better way to check for active session"
This reverts commit 439a33c708 .
|
2015-12-14 19:30:24 -06:00 |
|
Larry E. Masters
|
1a3598c3f4
|
Revert "session_status() not available until 5.4"
This reverts commit da9b6453ce .
|
2015-12-14 19:29:08 -06:00 |
|
Larry E. Masters
|
da9b6453ce
|
session_status() not available until 5.4
Adding check for php version
|
2015-12-14 10:56:55 -06:00 |
|
Larry E. Masters
|
439a33c708
|
Using better way to check for active session
|
2015-12-14 10:42:46 -06:00 |
|
Larry E. Masters
|
8f52cefdcc
|
Changing where bool is returned
|
2015-12-14 09:17:29 -06:00 |
|
Larry E. Masters
|
fac95baee7
|
Forcing bool return
|
2015-12-13 20:05:54 -06:00 |
|
chinpei215
|
726699ee7a
|
Magic call with custom finders
Now we can use findListBy, etc - closes #7674
|
2015-11-11 22:43:19 +09:00 |
|
mark_story
|
8c404ad6a7
|
Merge branch '2.7' into 2.8
|
2015-10-17 21:00:26 -04:00 |
|
mark_story
|
e2a1094e69
|
Define variables before they are used.
Refs #7563
|
2015-10-16 23:07:25 -04:00 |
|
mark_story
|
707915e693
|
Merge branch '2.7' into 2.8
|
2015-10-15 22:10:56 -04:00 |
|
Marc Würth
|
ed410dd12c
|
Do not mix void with other return types
Inspired by #7527
|
2015-10-10 15:49:00 +02:00 |
|
Marc Würth
|
de8aed534f
|
Add false as return value of field()
+ improve DocBlocks
|
2015-10-08 16:31:01 +02:00 |
|
mark_story
|
ae83e197dc
|
Merge branch '2.8' of github.com:cakephp/cakephp into 2.8
|
2015-09-27 11:13:12 -04:00 |
|
Mark Story
|
12f5aee5a2
|
Merge pull request #7447 from ravage84/2.7-lib-improvements
Various improvements to the CakePHP lib files
|
2015-09-25 12:14:00 -04:00 |
|
Marc Würth
|
e690662f0e
|
Various improvments to the CakePH Plib files
Mostly CS, doc blocks and explicit returning nulls.
|
2015-09-25 17:11:20 +02:00 |
|
Mark Story
|
9208a0857e
|
Merge pull request #7428 from burriko/fix-dbo-connection-issues
Fix use of $_connection in DboSource in 2.x
|
2015-09-21 21:38:20 -04:00 |
|
Graeme Tait
|
dc856b8508
|
Switch out is_null()
|
2015-09-21 17:00:20 +01:00 |
|
Graeme Tait
|
1b33efaad3
|
Check $_connection is not null before trying to use it
Stops a fatal error if calling isConnected() after disconnect().
|
2015-09-21 14:08:07 +01:00 |
|
Graeme Tait
|
8fae10a971
|
Set DboSource::$_connection to null on disconnect
|
2015-09-21 14:05:56 +01:00 |
|
Mark Scherer
|
97b6f8674c
|
Fix CS
|
2015-09-21 13:45:18 +02:00 |
|