Commit graph

4825 commits

Author SHA1 Message Date
Mark Story
13bcaaf2eb Fixing doubly encoded action attributes in FormHelper.
Fixes #1748
2011-06-23 14:32:10 -07:00
Maury M. Marques
de893b14ab Unnecessary line 2011-06-23 09:54:29 -07:00
Thomas Ploch
5ffab8cde9 Added App::import('Model', 'ConnectionManager') to cake/libs/sanitize.php to prevent missing class errors. 2011-06-21 12:05:42 +02:00
Graham Weldon
c5dee7d541 Merge remote-tracking branch 'origin/master' into 1.3 2011-06-06 23:04:03 +08:00
ADmad
00f29f312a Updating docblock for Sanitize::stripScripts() 2011-06-03 00:49:57 +05:30
Graham Weldon
b22fdeae77 Add doc block for CakeSchema::_noPrefixTable 2011-06-01 11:29:27 +08:00
Graham Weldon
169b0a5c3f Consolidate table prefix removal. 2011-06-01 00:38:09 +08:00
Graham Weldon
c5d763773c Added test for datasource prefixes.
Fixed another instance of error in prefix replacement in CakeSchema.
2011-05-31 23:40:29 +08:00
Graham Weldon
52b90872df Fixed schema reading where table name contains the datasource prefix. 2011-05-31 18:29:26 +08:00
Juan Basso
6aca8dc11a Updating the copyright to 2011. 2011-05-30 22:46:14 -04:00
mark_story
cd8b18d00d Fixing notice errors caused by trying to operate on keys that don't exist.
Fixes #1651
2011-05-30 20:46:53 -04:00
Jose Lorenzo Rodriguez
8671aa38b2 Updating version numbers to 1.3.10 2011-05-30 09:27:35 -04:30
Jose Lorenzo Rodriguez
0d1ae69a5a Fixing small mistake from last commit trying to improve styles for url rewriting detection notice 2011-05-30 09:04:13 -04:30
Jose Lorenzo Rodriguez
d51e902036 Improving styles for url rewriting detection notice, and copying it to the skel app 2011-05-30 09:01:26 -04:30
mark_story
3f5850913a Fixing Xml::toString() not slugging elements with no children.
Thanks to jeremyharris for the patch.
Fixes #903
2011-05-28 16:19:54 -04:00
mark_story
b76901eb43 Ensuring that nested cookie values are deleted.
Cookies created with write('Foo', $array) would not get proper
recursive deletion done.
Fixes #1651
2011-05-28 14:21:50 -04:00
mark_story
b64b1219c4 Fixing CakeLog::handleError() being called too often.
Adding a PHP5 conditional, so custom error handlers are not called
for errors not in the configured masking.
Fixes #1735
2011-05-28 13:59:56 -04:00
Cauan Cabral
684c377d0b Handling files with Uppercase extesion name
MediaView fixed to work correctly with file names when file extesion is UPPERCASE

Signed-off-by: mark_story <mark@mark-story.com>
2011-05-28 11:44:36 -04:00
ADmad
6b7dbcdd1c Adding warning message on homepage for misconfigured URL rewriting. Closes #1577 2011-05-26 20:35:28 +05:30
Jose Lorenzo Rodriguez
91391fde79 Updating version numbers 2011-05-20 22:08:58 -04:30
mark_story
0494876217 Adding [ and ] to the list of allowed characters in validation::url()
This matches the behavior of PHP's filter_var()
Fixes #1717
2011-05-20 21:44:53 -04:00
mark_story
efbb6479fc Fixing issues in DboSource::group(), which always expected an optional argument.
Fixes #1656
2011-05-20 21:10:30 -04:00
evilbloodydemon
5abd00e636 Fixed undefined variable 2011-05-17 15:29:21 +04:00
mark_story
b6ef1305df Backporting changes made to Memcache in 2.0 to address issues with persistent
connections.  Refs #1705
2011-05-13 22:10:58 -04:00
mark_story
f65cf55f4f Revert "Merge pull request #45 from joeytrapp/router-reverse"
This reverts commit eb1e040ae9, reversing
changes made to e53407c595.
2011-05-10 20:46:18 -04:00
Mark Story
eb1e040ae9 Merge pull request #45 from joeytrapp/router-reverse
Generate full url from Router::reverse(). Fixes #1638
2011-05-10 17:43:29 -07:00
romaimperator
50ec7e6fdf Fixed a bug in the dateTime function that prevented the proper hour from being selected because the check for past noon required seconds to be set and they weren't
Signed-off-by: mark_story <mark@mark-story.com>
2011-05-09 22:21:58 -04:00
mark_story
1cdf55f8b2 Fixing whitespace and adding doc comment. 2011-05-08 08:47:32 -04:00
Luís Armando
66de46cd5b Fix ticket #825. Related with session set to cache. 2011-05-08 08:35:34 -04:00
Ceeram
9e4ecba12a fixed error when passing false for $conditions, closes #1685 2011-05-08 08:23:09 -04:00
Mariano Iglesias
cc5670a33f Fixing issue with wrong internationalization of time ago expressions in TimeHelper. Fixes #1663 2011-04-29 15:48:00 -03:00
mark_story
5273080962 Merge branch 'torifat-set' into 1.3 2011-04-27 22:42:02 -04:00
Rifat Nabi
7812223eb5 fixed! ticket #989, Set::extract replacing first index with an index of same key [0] one step lower 2011-04-27 15:21:25 +06:00
Simon Males
f3ff494196 Fixed documentation typo: 'received'
Signed-off-by: mark_story <mark@mark-story.com>
2011-04-21 23:51:21 -04:00
mark_story
9914258807 Applying patch from 'Stefano Rosanelli' which fixes Xml::toArray() greatly improving
its ability to convert xml documents.  Fixes #1667
2011-04-21 22:38:41 -04:00
mark_story
3a7f44e04c Updating the doc blocks for TreeBehavior::moveup/movedown to indicate that
number can be either an integer or a boolean.
Fixes #1655
2011-04-19 21:02:33 -04:00
mark_story
12c245609e Fixing XmlHelper overwriting its Xml property when creating an open element with elem()
Fixes #1642
2011-04-16 16:56:32 -04:00
mark_story
4395e8acc1 Fixing formatting, and updating test to better reflect what would normally happen. 2011-04-16 15:56:40 -04:00
tylerseymour
13c64f1707 Fix issue where values are not recursively deleted. ie:
$this->Cookie->write('User.email', 'test@example.com');
$this->Cookie->delete('User');
The cookie for User.email would not be removed (despite being removed from the __values array.
Fixes #1651

Signed-off-by: mark_story <mark@mark-story.com>
2011-04-16 15:16:34 -04:00
mark_story
9f51c4ccfc Updating API docs for FormHelper::input() fixes #1649 2011-04-13 18:48:29 -04:00
Juan Basso
2c4ed9bfc2 Fixed the input name when multiple is setted to false. 2011-04-13 00:32:15 -04:00
mark_story
7d15c9d93a Fixing CakeSocket::write() to better work with fwrite() oddities
where fwrite() won't actually write all the content, instead only part
of the content would be written. All content should be written now.
Fixes #1616
2011-04-07 20:07:36 -04:00
Joey Trapp
6a8322a272 Added a flag to Router::reverse that is passed on to the Router::url call 2011-04-04 15:11:47 -05:00
Mark Story
27952ebc9a Fixing missing array cast that could result in warnings from array_merge
if a model or behavior returned false from a beforeValidate callback.
Fixes #1629
2011-04-03 11:01:55 -04:00
Mark Story
a0321a723b Updating documentation for ClassRegistry::init() to not imply that it
can be used to construct non model objects.  Fixes #1633
2011-04-03 10:50:05 -04:00
mark_story
fbab7bd9c3 Fixing linking of emails that are missing tld's. They should not be turned into links. Test added. Fixes #1622 2011-03-27 19:09:46 -04:00
mark_story
6cc1688d4e Fixing issue where DboMysql would perform joins on delete queries even if the conditions did not require joins. Added a more intelligent join detector, that removes joins if all the conditions are simple. This will only be able to optimize array conditions.
Test cases added.  Fixes #1571
2011-03-24 23:25:56 -04:00
mark_story
532555b94b Fixing order condition quoting to allow fields with - in them. Fixes #1599 2011-03-24 22:28:11 -04:00
mark_story
b8e560b8b4 Merge remote branch 'ceeram/1.3-authuser' into 1.3 2011-03-23 21:31:13 -04:00
Ceeram
c902d4c060 Auth enhancement, less calls to user() 2011-03-23 15:34:02 +01:00