Re: [CakePHP : The Rapid Development Framework for PHP] #4048: Some images are not using SSL links which results in mixed content warnings on some browsers

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#4048: Some images are not using SSL links which results in mixed content 
warnings
on some browsers
--+-
Reporter:  Gena01 | Owner:  gwoo
Type:  Optimization   |Status:  new 
Priority:  Medium | Milestone:  
   Component:  Trac:trac.cakephp.org  |   Version:  
Severity:  Trivial|Resolution:  
Keywords: |   Php_version:  n/a 
Cake_version: |  
--+-
Comment (by miau):

 With IE, an annoying dialog appears on every page load in the site.

 Those images might be referred by
 https://trac.cakephp.org/themeengine/theme.css.

-- 
Ticket URL: https://trac.cakephp.org/ticket/4048#comment:4
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #2056: [PATCH] afterFind and beforeFind methods should be called on associated models

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#2056: [PATCH] afterFind and beforeFind methods should be called on associated
models
+---
Reporter:  maular   | Owner:
Type:  Enhancement  |Status:  new   
Priority:  Medium   | Milestone:  1.3.x.x   
   Component:  Model|   Version:
Severity:  Trivial  |Resolution:
Keywords:   |   Php_version:  PHP 4 = 4.3.0
Cake_version:  4451 |  
+---
Comment (by VVilku):

 Hi,
 Maybe somebody could help me with ver 1.2.2.8120, patching dbo_source and
 working Containable behavior (used in primary model)
 ?

-- 
Ticket URL: https://trac.cakephp.org/ticket/2056#comment:18
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



[CakePHP : The Rapid Development Framework for PHP] #6273: dispatcher parseParams method failes in second call because of include

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#6273: dispatcher parseParams method failes in second call because of include
---+
Reporter:  farbwahl|  Type:  Bug
  Status:  new |  Priority:  Medium 
   Milestone:  1.2.x.x | Component:  General
 Version:  1.2 Final   |  Severity:  Normal 
Keywords:  |   Php_version:  PHP 5  
Cake_version:  1.2.2.8120  |  
---+
 hey there,

 we use cakephp to develop a CMS. After installing a testversion on our
 production server we received an php error:
 {{{
 Fatal error: Cannot run code from this file in conjunction with non
 encoded files in /our/path/to/project/config/routes.php on line 296
 }}}

 Becouse it is important for us to run the project on this server we where
 looking for the problem and found out, that in cake/dispatcher.php an
 include is used. After changing this to an include_once everything works
 fine.

 original (in parseParams method line 284):
 {{{
 include CONFIGS . 'routes.php';
 }}}

 changed to:
 {{{
 include_once CONFIGS . 'routes.php';
 }}}

 Thanks and kind regards
 Stefan

-- 
Ticket URL: https://trac.cakephp.org/ticket/6273
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



[CakePHP : The Rapid Development Framework for PHP] #6274: [PATCH] CounterCache queries wrong with unconventional primaryKeys

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#6274: [PATCH] CounterCache queries wrong with unconventional primaryKeys
-+--
Reporter:  phally|  Type:  Bug   
  Status:  new   |  Priority:  Medium
   Milestone:  1.2.x.x   | Component:  Model 
 Version:  1.2 Final |  Severity:  Normal
Keywords:  CounterCache, primaryKey  |   Php_version:  n/a   
Cake_version:|  
-+--
 First my apologies for filing this ticket without a test case. I haven't
 had time to make one, however I think the problem can be seen in the
 diff.[[BR]]
 [[BR]]
 The query I was expecting was:[[BR]]
 {{{
 SELECT `Project`.`company_id` FROM `projects` AS `Project` WHERE
 `project_id` = 3 LIMIT 1
 }}}
 [[BR]]
 The query I got was:[[BR]]
 {{{
 SELECT `Project`.`company_id` FROM `projects` AS `Project` WHERE `id` =
 '3' LIMIT 1
 }}}
 [[BR]]
 I traced it to line 1423 of model.php, here has 'id' been set
 hardcoded:[[BR]]
 {{{
 'conditions' = array('id' = $this-id),
 }}}
 [[BR]]
 It should be:[[BR]]
 {{{
 'conditions' = array($this-primaryKey = $this-id),
 }}}
 [[BR]]
 I have attached a patch to apply. No other testcases were affected by this
 patch, I checked. I ran all tests of the model core test group. There was
 one failing test, but that was there before I applied the patch.

-- 
Ticket URL: https://trac.cakephp.org/ticket/6274
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #2056: [PATCH] afterFind and beforeFind methods should be called on associated models

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#2056: [PATCH] afterFind and beforeFind methods should be called on associated
models
+---
Reporter:  maular   | Owner:
Type:  Enhancement  |Status:  new   
Priority:  Medium   | Milestone:  1.3.x.x   
   Component:  Model|   Version:
Severity:  Trivial  |Resolution:
Keywords:   |   Php_version:  PHP 4 = 4.3.0
Cake_version:  4451 |  
+---
Comment (by VVilku):

 (used in primary controller) ofc

-- 
Ticket URL: https://trac.cakephp.org/ticket/2056#comment:19
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6273: dispatcher parseParams method failes in second call because of include

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#6273: dispatcher parseParams method failes in second call because of include
---+
Reporter:  farbwahl| Owner:   
Type:  Bug |Status:  closed   
Priority:  Medium  | Milestone:  1.2.x.x  
   Component:  General |   Version:  1.2 Final
Severity:  Normal  |Resolution:  invalid  
Keywords:  |   Php_version:  PHP 5
Cake_version:  1.2.2.8120  |  
---+
Changes (by davidpersson):

  * status:  new = closed
  * resolution:  = invalid

Comment:

 The error you are getting is the result of an incompatibility of installed
 extensions on your server (most often two opcode cache engines).

-- 
Ticket URL: https://trac.cakephp.org/ticket/6273#comment:1
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



[CakePHP : The Rapid Development Framework for PHP] #6275: [TEST] saveAll passes when habtm with model fails validation

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#6275: [TEST] saveAll passes when habtm with model fails validation
--+-
Reporter:  ifunk  |  Type:  Bug   
  Status:  new|  Priority:  Medium
   Milestone:  1.2.x.x| Component:  Model 
 Version:  1.2 Final  |  Severity:  Normal
Keywords: |   Php_version:  n/a   
Cake_version: |  
--+-
 I am trying to validate habtm records that have extra fields, using the
 with join model. Although the $validate array of the join table is
 honoured and the join record is not inserted, the saveAll method isn't
 aware and returns $success = true.
 [[BR]][[BR]]
 I did a quick test and added a return value for the Model::__saveMulti
 method which worked, but I was unable to grasp how to return the
 validation data so that multiple invalid habtm records could be visible in
 the form.
 [[BR]][[BR]]
 I have attached a test case that shows how to replicate the error.

-- 
Ticket URL: https://trac.cakephp.org/ticket/6275
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



[CakePHP : The Rapid Development Framework for PHP] #6276: afterFind() called twice / documentation does not match behaviour

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#6276: afterFind() called twice / documentation does not match behaviour
--+-
Reporter:  nemosoft   |  Type:  RFC   
  Status:  new|  Priority:  Medium
   Milestone:  1.2.x.x| Component:  Model 
 Version:  1.2 Final  |  Severity:  Normal
Keywords:  afterFind primary data corruption  |   Php_version:  PHP 5 
Cake_version:  8120   |  
--+-
 SUMMARY
 [[BR]]
 * With hasMany relations, afterFind() is called twice on the same
 data.[[br]]
 * The example given in the manual for afterFind() will mess up your
 data.[[br]]
 [[BR]]

 DESCRIPTION[[BR]]

 I would like to have your opinion on the following problem I've
 encountered using Model::afterFind(). It is the combination of afterFind's
 behaviour and the documentation in the manual that causes corruption of
 the data that is being read with a hasMany relation.[[BR]]
 [[BR]]

 See the attached example of a simple Tutor/Pupil/Course database. A Tutor
 hasMany Pupils, and also hasMany Courses. When reading in a Tutor, Pupils
 and Courses are automatically read as well, and their data is passed
 through their respective afterFind() functions *twice*. Or rather,
 afterFind() is called once for each individual record (the first pass),
 and once more wtih all data combined (second pass). The problem is that
 the data layout differs subtly between the first and second pass. The
 second pass has the same data one layer deeper; if one follows blindly the
 example given in the manual (http://book.cakephp.org/view/681/afterFind)
 as I did, the data will be messed up during the second pass.[[BR]][[BR]]


 The first pass formats data like this:

 {{{
 $results = array { [0] { [Pupil] { [id], [name], [tutor_id] } } }
 }}}

 This is called for each record retrieved from the database.[[BR]]


 The second pass uses all data in a combined format:

 {{{
 $results = array { [0] { [Pupil] { [0] { [id] [name] [tutor_id] }, [1] {
 ... }, [2] { ... } } } }
 }}}

 In both cases, the $primary boolean is set to false.
 [[BR]]
 [[BR]]


 There are multiple issues with this behaviour:

 - Essentially the same data is passed twice through afterFind(); this is
 inefficient and can introduce side effects (see below)[[BR]]
 - It both cases $primary is false, but the data is in a different layout.
 Moreover, it does not match the documentation!
 [[BR]][[BR]]

 Others have noticed this anomolous behaviour, see for example
 [http://groups.google.com/group/cake-
 
php/browse_thread/thread/c83e5f40ac861caa/1d88bdb31fa3d12f?lnk=gstq=afterFind#1d88bdb31fa3d12f
 this Google Groups post] and [http://groups.google.com/group/cake-
 
php/browse_thread/thread/4b10a1d5ccd468d9/fb225acbdac9109d?lnk=gstq=afterFind#fb225acbdac9109d
 this one].
 [[br]]
 [[br]]



 Some people have suggested solutions, like [http://groups.google.com/group
 /cake-
 
php/browse_thread/thread/d1eea174c3143d83/6bada5f9fce6f714?lnk=gstq=afterFind#6bada5f9fce6f714
 this one] but in that case the data is processed twice. This could lead to
 weird data behaviour, for example if one converts dates from database to
 human format by string manipulation, concatenates strings, adds numbers,
 etc. I've used a rot13() function in my example.
 [[br]]
 [[br]]

 I think the behaviour stems from fixes for another problem where
 afterFind() was not called at all for recursive retrievals (for example,
 see changeset 7347). Now it's being called too many times.[[br]][[br]]

 My questions are:[[br]]
 * Is the observed behaviour of calling afterFind() twice intended? If so,
 what's the reason behind passing different data layouts?[[br]]
 * Could somebody please update the documentation for afterFind()? Either
 mention that the function is called twice with hasMany relations, or fix
 the example so that it won't work on the second pass.[[br]][[br]]

 I'm of the opinion that the second call to afterFind() is an error. It
 would make sense to process each record as it is being retrieved, but not
 do it again on the combined data set. The former would also eliminate the
 distinction between primary and non-primary retrievals, since the data
 layout is the same now (my observation).[[br]][[br]]

 Of course, a workaround would be to ignore the second pass, but I don't
 think that burden should be placed on the developer...

-- 
Ticket URL: https://trac.cakephp.org/ticket/6276
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without 

Re: [CakePHP : The Rapid Development Framework for PHP] #6275: [TEST] saveAll passes when habtm with model fails validation

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#6275: [TEST] saveAll passes when habtm with model fails validation
---+
Reporter:  ifunk   | Owner:   
Type:  Bug |Status:  new  
Priority:  Medium  | Milestone:  1.2.x.x  
   Component:  Model   |   Version:  1.2 Final
Severity:  Normal  |Resolution:   
Keywords:  |   Php_version:  n/a  
Cake_version:  |  
---+
Comment (by phally):

 I think you need to pass 'validate' = 'first' with the save all:

 {{{
 $TestModel-JoinThing-validate = array('doomed' = array('rule' =
 'notEmpty'));
 $TestModel-hasAndBelongsToMany['SomethingElse']['unique'] = false;
 $data = array(
 'Something' = array('title' = ''),
 'SomethingElse' = array(array('something_else_id' = 1, 'doomed'
 = ''))
 );
 $TestModel-create();
 $result = $TestModel-saveAll($data, array('validate' = 'first'));
 $this-assertFalse($result);
 }}}
 That passes.

-- 
Ticket URL: https://trac.cakephp.org/ticket/6275#comment:1
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #5139: Deprecate Model::remove()

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#5139: Deprecate Model::remove()
+---
Reporter:  dho  | Owner: 
Type:  Enhancement  |Status:  closed 
Priority:  Low  | Milestone:  1.3.x.x
   Component:  Model|   Version: 
Severity:  Trivial  |Resolution:  fixed  
Keywords:   |   Php_version:  n/a
Cake_version:  1.2.0.7353   |  
+---
Changes (by nate):

  * status:  new = closed
  * resolution:  = fixed

Comment:

 Fixed in [5be3c9bf8324a371607f3f020d4a996bfd728835].

-- 
Ticket URL: https://trac.cakephp.org/ticket/5139#comment:2
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #441: Create a downloadable manual and other documentation

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#441: Create a downloadable manual and other documentation
---+
 Reporter:  mika   | Owner:  phpnut  
 Type:  Enhancement|Status:  reopened
 Priority:  High   | Milestone:  0.10.0.x
Component:  Documentation  |   Version:  0.10.0.*
 Severity:  Major  |Resolution:  
 Keywords: |   Php_version:  n/a 
---+
Changes (by marceloverdijk):

  * status:  closed = reopened
  * resolution:  fixed =

Comment:

 Links as described link to online documentation.
 A downloadable manual would be very useful.

 E.g. I like to read the manual in the train where I do not have internet
 connection.

-- 
Ticket URL: https://trac.cakephp.org/ticket/441#comment:3
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #441: Create a downloadable manual and other documentation

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#441: Create a downloadable manual and other documentation
--+-
Reporter:  mika   | Owner:  phpnut  
Type:  Enhancement|Status:  closed  
Priority:  High   | Milestone:  0.10.0.x
   Component:  Documentation  |   Version:  0.10.0.*
Severity:  Major  |Resolution:  invalid 
Keywords: |   Php_version:  n/a 
Cake_version: |  
--+-
Changes (by jperras):

  * status:  reopened = closed
  * resolution:  = invalid
  * cake_version:  =

Comment:

 Please do not post tickets here with regards to the CookBook or the API.
 Those belong on either http://thechaw.com/cakebook or
 http://thechaw.com/api_generator .[[BR]]
 [[BR]]


 Moreover, the API is generated from the api_generator plugin
 (http://thechaw.com/api_generator) which you can install  use to generate
 your own documentation.[[BR]]


 For the cookbook, you can view all in one page (see link on sidebar) 
 save that page to your hard drive in whatever format you wish.

-- 
Ticket URL: https://trac.cakephp.org/ticket/441#comment:4
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---



Re: [CakePHP : The Rapid Development Framework for PHP] #6275: [TEST] saveAll passes when habtm with model fails validation

2009-04-08 Thread CakePHP : The Rapid Development Framework for PHP
#6275: [TEST] saveAll passes when habtm with model fails validation
---+
Reporter:  ifunk   | Owner:   
Type:  Bug |Status:  reopened 
Priority:  Medium  | Milestone:  1.2.x.x  
   Component:  Model   |   Version:  1.2 Final
Severity:  Normal  |Resolution:   
Keywords:  |   Php_version:  n/a  
Cake_version:  |  
---+
Changes (by ifunk):

  * status:  closed = reopened
  * resolution:  invalid =

Comment:

 Sorry Joel, did you try phally's patch before closing? His modifications
 don't pass on mine.

-- 
Ticket URL: https://trac.cakephp.org/ticket/6275#comment:3
CakePHP : The Rapid Development Framework for PHP https://trac.cakephp.org/
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
tickets cakephp group.
To post to this group, send email to tickets-cakephp@googlegroups.com
To unsubscribe from this group, send email to 
tickets-cakephp+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~--~~~~--~~--~--~---