Implemented Validation::extension(); and Vaidation::range();
Updated copyright notices in all files"
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6296 3807eeeb-6ff5-0310-8944-8be069107fe0
Closes#2213, Support multiple plugin paths.
Closes#2234, filepaths to behavior classes should be cached in class.paths.php also
Closes#2345, ability to group components into subfolders
Closes#2645, Improvement to basic.php for class loading.
Fixes#3526, Cache::write, when using just the config name, it fails.
Fixes#3559, loading plugin model as assoc don't work.
Closes#3567 Controller Folders (Note this does not need routing to work, but controller names can not conflict with others in the same application so naming must still be unique)
Fixes#3579, email.php component: Parse error with php 4.
Adding new class and file importer.
Updated most of the core to use the importer.
Added ClassRegsitry::init() that will create and instance of an object and store it in the registry.
Deprecated most of the load functions in basics.php
Plugin model loading now forces using the dot notation, to use models within a plugin, all the model associations must be in the PluginName.Model syntax, if this is not used, the plugin will look for the models in the main app/models directory first, if not found then it will search the plugin directories recursively until it finds a model.
var $belongsTo = array('SomeModel'); will look for some_model.php in the app/models
var $belongsTo = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $belongsTo = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
The controllers of the plugin will still look for the default models inside the plugin if var $uses is not set:
var $uses = array('SomeModel'); will look for some_model.php in the app/models
var $uses = array('MyPlugin.SomeModel'); will look for some_model.php in my_plugin/models
var $uses = array('MyPlugin.MyPlugin', 'SomeModel'); will used my_plugin/models/my_plugin.php and app/models/some_model.php
All of the above will work between plugins and main app
These changes also allow placing model and controllers is sub directories
Removed old class.paths.php file generation
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6001 3807eeeb-6ff5-0310-8944-8be069107fe0
Revision: [5420]
* Added doc comment for Set::reverse()
Revision: [5419]
* updating Auth component
Revision: [5418]
* Adding fix for #2881, Sanitize::escape() problem with trim()
Revision: [5417]
* Disabling integer column length for Postgres (Ticket #2814)
Revision: [5416]
* Fixing quoting of boolean values in DboPostgres (Ticket #2594)
Revision: [5415]
* Adding fix for #2880, using the acl cli help command would return list of all commands instead of individual commands
Revision: [5414]
* Adding fix for #2813, dbo_oracle.php's value function adding additional quotes
Revision: [5413]
* fixing acl shell
Revision: [5412]
* Adding fix for #2877, adds quit option in bake.php
Revision: [5411]
* Adding fix for #2876, Missing {} on some string on tree behavior
Revision: [5410]
* updating auth, acl and tests
Revision: [5409]
* closes#2754, fix for project task
Revision: [5408]
* Adding fix for #2836, PaginatorHelper::numbers() outputting extra url params
Revision: [5407]
* Adding fix from #2872, $ajax->afterRender() has no decoding
Revision: [5405]
* Adding fix for #2683, $_SERVER['SCRIPT_FILENAME'] not available in some installations of IIS
Revision: [5404]
* Removing else statement in last commit [5403]
Revision: [5403]
* Adding fix for #2863, When trying to load not existing helper file, loadHelper() returns true
Revision: [5402]
* Adding fix for #2757, acl shell view command broken
Revision: [5401]
* Adding fix for #2752, acl shell creates invalid sql
Revision: [5400]
* Adding fix for #2776, ACL Shell should not accept / as an alias
Revision: [5399]
* Adding fix for #2753, db_acl.php doesn't respect Dbo alias property
Revision: [5398]
* Removing code left from testing
Revision: [5397]
* Adding fix for #2837, dbo_source looping bug on parsing fields, can't use database function
* Added test for #2837
Revision: [5396]
* Skipping EmailTest::testBadSmtpSend() and EmailTest::testSmtpSend() if suite can not connect to smtp
Revision: [5395]
* updating most tests with fixes to coding standards
Revision: [5394]
* updating Auth test
Revision: [5393]
* Adding fix for 2691, Error caching xml files
Revision: [5392]
* updating Auth test with AuthUser and fixture
Revision: [5391]
* updating Auth test
Revision: [5390]
* Adding fix for #2822, FileEngine : Escape special chars before write cache
Revision: [5389]
* Adding fix for #2105, Email Component template should default to null?
* Adding fix for #2196, allow creation of user defined headers in email component.
* Adding fix for #2215, EmailComponent header injection protection and cleaning.
* Adding fix for #2717, EmailComponent should account for SAFE_MODE restriction on php mail function.
* Adding fix for #2855, EmailComponent methods and parameters (to, subject, message, from etc.) should be email injection safe
* Adding fix for #2859, EmailComponent does not send email when adding cc: and bcc:
Revision: [5388]
* Adding fix for 'after' value not being rendered in FormHelper::input() (Ticket #2860)
Revision: [5387]
* Incomplete test for Auth component, committing so gwoo can work on it
Revision: [5386]
* #2871, fixing mode in Folder
Revision: [5385]
* Adding fix for #2862, fixes view::render() affect the layout of the main view
Revision: [5384]
* Adding fix for #2869, fixes count function not escaping "count" properly in pgsql
Revision: [5383]
* Adding fix for #2866, fixes print_r() missing second parameter in object.php
Revision: [5382]
* Fixed Inflector bug #2061
* Added tests to InflectorTest
Revision: [5381]
* Added fix for #2824, fixes Empty elements when DISABLE_CACHE is set to true
Revision: [5380]
* Adding patch from [2843], fixes Logging only writes to error.log
Revision: [5379]
* Adding fix for #2823, fixes Element gets different instances of helper than view in PHP4 and PHP5
* Removed HtmlHelperTest::testRadio(), the HtmlHelper::radio() has been deprecated
Revision: [5378]
* Adding deprecated notice to HtmlHelper::radio() this has been replaced with FormHelper::radio() since [5338]
Revision: [5377]
* adding support for passing model name to model task, updated isMobile check in requestHandler
Revision: [5376]
* fixing scaffold templates altrow css
Revision: [5375]
* Adding iPhone detection to RequestHandlerComponent::isMobile()
Revision: [5374]
* Adding fix for failing tests on php 5
Revision: [5373]
* Refactoring Set::reverse() and Model::set()
* Set::reverse() will now reverse the object to an array that was created in Set::map();
* Added testMapReverse() to Set tests.
* Removed code in Model::set() that was no longer needed
Revision: [5372]
* Updating Set::reverse()
* Corrected undefined variable
Revision: [5370]
* Adding option to group elements in Set::combine and making Model::generateList use Set::combine. Adding tests for Model::generateList and more tests for Set::combine
Revision: [5369]
* Adding Set::combine to allow mapping of keys and values of an array using paths
Revision: [5368]
* Refactoring Model::set()
* Added Set::reverse(0 to convert an object to an array
Revision: [5367]
* Improving HABTM saving by getting rid of unneeded loop and escaping field names
Revision: [5366]
* Refactoring the Model::_ _saveMulti() to use one INSERT statement instead of looping over each value and querying INSERT.
Revision: [5365]
* Adding tests for HABTM saving when parent data comes after HABTM data
Revision: [5364]
* Adding tests for HABTM saving, including saving HABTM data without any parent data
Revision: [5363]
* Adding enhancement to allow saving habtm data without needing to update or save a parent record
Revision: [5362]
* Adding tests for del and deleteAll in Model
Revision: [5361]
* Adding aliasing fix for DboSource::delete() and Model::deleteAll() (Ticket #2735)
Revision: [5360]
* fix Paginator::numbers() seperator: #2685
Revision: [5359]
* fix Paginator::numbers() seperator: #2685
Revision: [5358]
* adding test for form checkbox: #2785
Revision: [5357]
* Added explanation to test
Revision: [5356]
* adding test for paginator numbers to prove fix for #2825
Revision: [5355]
* adding fix for paginator numbers: #2825
Revision: [5354]
* Added in test to make sure that an SMTP server is running on port 25 on localhost
Revision: [5353]
* Refactored SMTP send code, cleaned up tests. Test requires local SMTP server that is working
Revision: [5352]
* adding fix for bake form template: #2834
Revision: [5351]
* Added code to allow Email compoenent to send email via SMTP, along with test for component
Revision: [5350]
* Adding DboSource::value() to findCount() to wrap the count in dbo specific quoting
Revision: [5349]
* Typo (ticket #2829)
Revision: [5348]
* Correcting session errors in EmailTest test case
Revision: [5347]
* Added in test for smtp functionality for email component, test not complete
Revision: [5346]
* Added in support for sending code out via SMTP
Revision: [5345]
* Adding a couple of tests to ensure proper parsing of GROUP BY queries
Revision: [5344]
* Adding Router::reload() to setUp() in tests
Revision: [5343]
* Adding fix for Ticket #2821, fixes Controller::postConditions() overrides $data passed in.
Revision: [5342]
* Adding fix for Ticket #2819, fixes postgrsql schema problems when setting 'schema' => '"some_shcema"'; in database settings
Revision: [5341]
* Correcting duplicate class defines in the test cases that was causing tests to fail.
* Added Router::reload(); to ViewTest::setUp()
Revision: [5340]
* Removed extra slash in test paths.
* Removed extra lines in files.
* Corrected header in file
Revision: [5339]
* Refactoring FileEngine cache class
* Refactoring Folder class
Revision: [5338]
* Adding patch from Ticket #2817, Allow type radio in FormHelper::input()
Revision: [5337]
* Fixing TreeBehavior so tests will work on php 4.
* Removing _ _METHOD_ _ from files since it is not valid on php 4
Revision: [5336]
* adding CakeTestModel::cacheSources = false;
* corrected the class that models defined in tree.test.php extend
Revision: [5335]
* Adding fix for Ticket #2812
Revision: [5334]
* Adding fix for Ticket #2561
Revision: [5333]
* Fixing bug when using Security component and a form has a hidden field, similar to those use by FormHelper::checkbox()
Revision: [5332]
* Adding fix for duplicated hidden tag for fields token
Revision: [5331]
* Adding enhancement and tests from #2159
Revision: [5330]
* Adding patch from #2791
Revision: [5329]
* Adding fix for Router::url() when static call is made outside of an object instance
Revision: [5328]
* Adding fix for Ticket #2719, Paginator::numbers() not accepting $options like the prev() and next()
Revision: [5327]
* Ticket #2805, fixes Blacklisting fields in FormHelper::inputs doesn't work like intended
* Ticket #2806, adds FormHelper::inputs can work recursively on $fields
* Merged changes from [5326]
Revision: [5326]
* Fixing issue with DELETE statement and alias not being properly created
Revision: [5325]
* Fixing issue #2810, AjaxHelper does not render boolean options properly, and adding tests for it
Revision: [5324]
* Fixing issue #2713, NumberHelper does not handle some currency formatting very well
Revision: [5323]
* Fixing issue #2735, deleteAll() does not work correctly with model aliases
Revision: [5322]
* Fixing console scripts.
* Correcting errors when using bake shell to create views.
* Corrected errors when interactively creating controllers and views
* Corrected issue in ProjectTask::cakeAdmin() with admin route not writing the admin define in core.php
* Moved ControllerTask::getAdmin() to Shell::getAdmin()
* Removed define setting CAKE_ADMIN to null which would cause issues with admin methods and views
* Corrected missing ?>
Revision: [5321]
* Adding fix for Ticket #2809, fixes Add / Edit scaffolding : Template is always 'edit' instead of $action
Revision: [5320]
* Ticket #1303, fixes On HABTM save() the associated field 'id' must be first in $this->params
* Ticket #1819, fixes save() for HABTM to allow array keys in any order.
* Ticket #2762, fixes Model::save() for HABTM not saving if no data from the parent Model is present
Revision: [5319]
* Adding fix for Ticket #2750, fixes rendering of links when requestAction() is used.
* Router::url() replaced $_this with $this which is an instance of the class from which the method is called, in the case of this ticket it was an instance of the HtmlHelper
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5422 3807eeeb-6ff5-0310-8944-8be069107fe0
Revision: [5316]
* Adding correct fix for Ticket #2775
Revision: [5315]
* Correcting code structure to standards
Revision: [5314]
* Correcting class method names
Revision: [5313]
* Correcting code structure to standards
Revision: [5312]
* Adding fix for Ticket #2786, fixes form dateTime helper does not set year to current
Revision: [5311]
* Adding fix for Ticket #2792, fixes AuthComponent: Blank password at user login generates SQL error
Revision: [5310]
* Adding fix for Ticket #2795, fixes hidden field for checkbox.
* Updated FormHelperTest::testCheckboxField() to reflect the correct return value
Revision: [5309]
* Adding fix for Ticket #2799, default error message should be i18n
Revision: [5308]
* Adding fix for Ticket #2737, changed TRUNCATE to TRUNCATE TABLE
Revision: [5307]
* Adding patch from Ticket #2642, fixes TranslateBehavior doesn't work with Model::saveField()
Revision: [5306]
* Adding fix for Ticket #2773, fixes Security Component requireAuth
Revision: [5305]
* Adding fix for Ticket #2798, fixes Hidden field causes undefined Index warning in Security Component
Revision: [5304]
* Adding ability to read cookies in the Controller::beforeFilter()
Revision: [5303]
* Adding fix for Ticket #2635, fixes Association data not correct if data is changed in afterFind()
Revision: [5302]
* Adding fix for Ticket #2736, fixes Core testing broken when libraries are relocated
Revision: [5301]
* Adding basic description to Acl shell class
Revision: [5300]
* Adding documentation for Acl shell and internationalizing messages
Revision: [5299]
* Adding documentation for ErrorHandler in Cake console and internationalizing error messages
Revision: [5298]
* Adding documentation for Cake console dispatcher
Revision: [5297]
* Adding documentation for Dispatcher
Revision: [5296]
* Adding documentation for CakePHP basic functions
Revision: [5295]
* Fixing translations function typo
Revision: [5294]
* Adding loadPluginModels back to dispatcher until I fix issue with loading associated plugin models.
* Corrected form.ctp template parse error
Revision: [5293]
* Replacing "&&" by "AND" (ticket #2784)
Revision: [5292]
* Fixing forced empty element selection in FormHelper::select() (Ticket #2749)
Revision: [5291]
* Fixing double merging of URL parameters in PaginatorHelper::sort() (Ticket #2692)
Revision: [5290]
* Fixing typo (ticket #2779)
Revision: [5289]
* Adding fix for Ticket #2775, fixes $this->here shows incorrect value for admin route
Revision: [5288]
* Adding fix for Ticket #2714, fixes requestAction not working properly
Revision: [5287]
* Rolling back DboSource changes from 1.2 to 1.1
Revision: [5286]
* Adding fix for Ticket #2738, fixes Nesting level too deep error when writing object in CakeSession in php 5.2+
Revision: [5285]
* Refactoring DboSource::__quoteFields() and improving support for mixed string and array conditions
Revision: [5284]
* Adding fix for #2651, fixes query creation problem in DboAdodb
Revision: [5283]
* Adding patch from #2652 fixes SQLite LIMIT statement broken
Revision: [5281]
* fix bake index template
Revision: [5280]
* updating bake templates for i18n, fixes for scaffold templates
Revision: [5279]
* fix for scaffold without CAKE_ADMIN
Revision: [5278]
* Applying patch from ticket #2763, adding test for it
Revision: [5277]
* Refactored Scaffold: deprecated generateFieldNames, aligned scaffold and bake view templates, set var $scaffold = CAKE_ADMIN; will scaffold only the admin actions
Revision: [5276]
* Adding test to disprove ticket #2763
Revision: [5275]
* Removing localization code from core-not-found error
Revision: [5274]
* Fixing substring quoting in DboSource::__quoteFields()
Revision: [5273]
* updating Acl, should fix#2733
Revision: [5272]
* changing Model::create to use Set::filter
Revision: [5271]
* updating acl shell
Revision: [5270]
* updating headers
Revision: [5269]
* Fixing path in help text
Revision: [5268]
* updating bake cake admin define
Revision: [5267]
* Adding query conditions parenthesis fix for Ticket #2663
Revision: [5266]
* updating bake view templates
Revision: [5265]
* update to formhelper habtm fields
Revision: [5264]
* updating help for bake
Revision: [5263]
* refactoring task loading
Revision: [5262]
* Adding fix for #2723, this fixes Saving an array in an encrypted cookie, with the CookieComponent, prevents you from deleting it later.
* Adding fix for #2667 move the CookieComponent::startup() implementation to CookieComponent::initialize().
* Deprecated the use of the Controller properties to set the CookieComponent properties
Revision: [5261]
* Updating doc strings with clarified instructions.
Revision: [5259]
* udpated view to work with form helper
Revision: [5258]
* fixing form helper for tickets #2726 and #2659, updated tests.
Revision: [5257]
* Adding fix for #2640, fixes nested array issues with Router::stripEscape()
Revision: [5256]
* Initializing tasks before execution (ticket #2725)
Revision: [5255]
* Adding documentation for Component
Revision: [5254]
* Adding fix for #2691, fixes error caching xml files
Revision: [5253]
* Adding fix for #2650, fixes alias in DboAdodb::fields()
Revision: [5252]
* Adding fix for #2689, fixes issue when using FormHelper::submitImage with Security Component enabled
Revision: [5251]
* Adding fix for #2648, fixes issue with token not being regenerated
Revision: [5250]
* Adding fix for undefined variable in Controller::cleanUpFields()
Revision: [5249]
* updating view task and view template
Revision: [5248]
* Enabling custom pagination methods in model
Revision: [5247]
* Fixing problem when baking only admin functions
Revision: [5246]
* Fixing typo
Revision: [5245]
* Using $connection param when cleaning arrays (ticket #2712)
Revision: [5244]
* updating view task and view template
Revision: [5243]
* #2672: fixed model task unit test baking
Revision: [5242]
* fixing missing passedArgs member in controller that was not committed in [5228], fixing cleanUpFields to not set a default time or date.
Revision: [5241]
* fixing extra ; in bake form template
Revision: [5240]
* fixing arg shifting in shells for php4
Revision: [5239]
* updating shells with startup callback, so a shell initializes, then loads tasks, then starts up, Tasks are the same. few other minor fixes to bake, api and acl.
Revision: [5238]
* Adding fix for FormHelper::checkbox() not creating the hidden fields.
* Corrected errors when multiple hidden fields used in a form.
* Fixed SecurityComponent::_ _validatePost() that would invalidate a form when checkboxes used.
Revision: [5237]
* updating view task and adding view task templates
Revision: [5236]
* updating dbconfig, project, model, and controller tasks
Revision: [5235]
* updating main shell class and dispatcher
Revision: [5234]
* Adding fixtures for afterFind() test
Revision: [5233]
* Adding test case for Model::findAll() results modified in afterFind (disproves Ticket #2635)
Revision: [5232]
* Fixing bug introduced in [5228].
Revision: [5231]
* Adding changes to Controller::set() to force $camelBacked variables only if second params is null
Revision: [5230]
* Adding change to Controller::set() to force variable to $camelBacked
Revision: [5229]
* Fixing issue with bad key set in Controller::generateFieldNames() causing HABTM not to save
Revision: [5228]
* fixing missing passedArgs member in controller
Revision: [5227]
* adding pass to the default set of router params
Revision: [5226]
* Fixing typo (ticket #2674)
Revision: [5225]
* Added "Model columns" command to get a list of columns and column type for a model
Revision: [5224]
* Correcting date string in tests
Revision: [5223]
* fixing File again adding info property
Revision: [5222]
* Adding fix for #2657, fixes form with Textarea does not save when Security Component is enabled
Revision: [5221]
* fixing File tests and class
Revision: [5220]
* Added in more verbose output of Model->save() functionality
Revision: [5219]
* Added in Model->save() method along with help text explaining how to use it
Revision: [5218]
* Correcting loading of plugin view classes
Revision: [5217]
* updating acl and model cli
Revision: [5216]
* Removed "protected" declaration from a function...PHP 5 only
Revision: [5215]
* Added in dynamic unbinding, verification of existing models, verification of existing associations, added in help text and reorganized code in swich-case block now that I figured out you could put preg_matches in a case statement :)
Revision: [5214]
* fixing typo in cleanUpfields
Revision: [5213]
* Changing Helper::_ _value(); to Helper::value();
* Removed HtmlHelper::value();
* Changed all references to _ _value() to value();
* Started changes needed for loading custom view classes located in a plugin
Revision: [5212]
* updating project task paths
Revision: [5211]
* updating File class and tests
Revision: [5209]
* Finishing vendors function to allow loading of plugin vendors files
Revision: [5208]
* Allowing spaces in session keys (Ticket #2639)
Revision: [5207]
* Implementing lazy loading of plugin models
Revision: [5206]
* fixing typo
Revision: [5205]
* adding check to previous cleanUpFields fix
Revision: [5204]
* updating cleanUpFields in 1.2 and 1.2 for #2632
Revision: [5203]
* updating file class deprecated getters, fixes for tickets #1838 and #2641, adding tests, changing Folder default directory to TMP
Revision: [5202]
* Moving loading of plugins controller to use loadController()
Revision: [5201]
* Adding documentation for Socket, Validation and Xml
Revision: [5200]
* Adding comments to Set
Revision: [5199]
* Fixing docs for Session
Revision: [5198]
* Formatting
Revision: [5197]
* Starting code changes to allow dot notation for loading of all classes
Revision: [5196]
* Refactoring tasks
Revision: [5195]
* Fixing problem with handling "0" in NumberHelper::toReadableSize() (ticket #2654)
Revision: [5194]
* Adding comments for Sanitize and Security
Revision: [5193]
* Adding comments for Router
Revision: [5192]
* Adding missing accessors
Revision: [5191]
* Adding documentation for Overloadable in both PHP versions
Revision: [5190]
* removing whitespace
Revision: [5189]
* fixing bug in paths of shell well accessing php cli through cake.php
Revision: [5188]
* minor enhancements like sorting in api shell
Revision: [5187]
* Added message when no result set is found
Revision: [5186]
* Made changes to properly parse output of find() and findAll()...but I don't like how it's doing it, have to find a more elegant solution later
Revision: [5184]
* moving beforeRender to before loadView
Revision: [5183]
* Added code to handle outputting associations like hasMany properly
Revision: [5182]
* Adding fix for #2637, fixes issue with Router::stripEscape() corrupting boolean values
Revision: [5181]
* updating formHelper for #1035 adding more tests, fixing some tags the would produce spaces
Revision: [5180]
* fixing FormHelper::month to use the comment from ticket #700
Revision: [5179]
* fixing bad tests in socket and some working in error messages
Revision: [5178]
* adding strfrotime to FormHelper::month #700, fix to radios which still need to be moved
Revision: [5177]
* adding and to TextHelper::toList #1934
Revision: [5176]
* updating html helper, deprecated methods moved to bottom
Revision: [5175]
* adding formHelper::checkbox
* adding tests
Revision: [5174]
* typo in number test
Revision: [5173]
* adding number helper format and test for format and currency
Revision: [5172]
* Using $this->hr() instead of $this->out('------------') as per gwoo's request
Revision: [5171]
* updating interactive console for the grumpy guy
Revision: [5170]
* Added missing parameter to dynamic bind call
Revision: [5169]
* updating interactive console for the grumpy guy
Revision: [5168]
* Correcting quoting
Revision: [5167]
* Correcting DboSybase class methods
Revision: [5166]
* Adding enhancement suggestion from #1565 to all Dbo classes
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5318 3807eeeb-6ff5-0310-8944-8be069107fe0
Revision: [5163]
* changing param check in Router::stripEscape()
Revision: [5162]
* Added in initial functionality for for returning result sets and providing help information
Revision: [5161]
* Adding API Shell to get method signatures from core CakePHP classes
Revision: [5160]
* Merging changes from [5157] into DboSource.
* Adding better check in Router::stripEscape()
Revision: [5159]
* Adding beforeRender() callback to components
Revision: [5158]
* fixing pre color in css
Revision: [5157]
* cleaning up auth, adding options to sort in paginator, adding preg match for database in dbo source
Revision: [5156]
* Refactoring ACL class locations
Revision: [5155]
* Fixing undefined variable in Shell:error()
Revision: [5154]
* adding Media to inflector tests
Revision: [5153]
* Correcting doc comment
Revision: [5152]
* Adding Firebird support
Revision: [5151]
* Fixing visibility based on attribute name convention
Revision: [5150]
* Adding fix to SecurityComponent::_ _validatePost()
Revision: [5149]
* Adding fix to allow empty multiple select when using the Security component. Prior to this fix a form would be considered invalid if nothing was selected.
Revision: [5148]
* Adding access visibility to comment
Revision: [5147]
* Adding comments to code
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5165 3807eeeb-6ff5-0310-8944-8be069107fe0
Revision: [5145]
* Adding fix for #2614
Revision: [5143]
* Adding fix for #2611, fixes App crashes when using requestAction with Security Component enabled
Revision: [5142]
* Adding patch from #2610, fixes Scaffold plugin produces incorrect form "action"
Revision: [5141]
* Adding fix for #2607
Revision: [5140]
* Adding fix for #2613, fixes afterFind callback not called on models in depth search > 1 (recursive).
* Changed the regex pattern matching in Router::stripEscape()
Revision: [5139]
* Adding fix for #2612, Fixes AuthComponent::identify SQL injection, and also removes ability to pass the -! in the posted data
Revision: [5138]
* Adding comments and internationalizing messages in HttpSocket
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5146 3807eeeb-6ff5-0310-8944-8be069107fe0