#1418: Missing identifier quoting in having query part
-----------------------------------------------------------+----------------
 Reporter:  mm                                             |       Owner:  
romanb
     Type:  defect                                         |      Status:  new  
 
 Priority:  blocker                                        |   Milestone:  New  
 
Component:  Query/Hydration                                |     Version:  0.11 
 
 Keywords:  having, quoting, query, ATTR_QUOTE_IDENTIFIER  |    Has_test:  0    
 
 Mystatus:  Pending Core Response                          |   Has_patch:  0    
 
-----------------------------------------------------------+----------------
 Similar behaviour to #1272 and #1262, missing identifier quoting in HAVING
 part. Probably affects 1.0 version because file has no changes, but I
 didn't test the 1.0 version.

 Actual class Doctrine_Query_Having line: 76-77

 {{{
     return $func;
     } else {
     return $func;
 }}}

 Patch

 {{{
     return $this->query->getConnection()->quoteIdentifier($func);
     } else {
     return $this->query->getConnection()->quoteIdentifier($func);
 }}}

-- 
Ticket URL: <http://trac.doctrine-project.org/ticket/1418>
Doctrine <http://www.phpdoctrine.org>
PHP Doctrine Object Relational Mapper
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"doctrine-svn" group.
 To post to this group, send email to [email protected]
 To unsubscribe from this group, send email to [EMAIL PROTECTED]
 For more options, visit this group at 
http://groups.google.co.uk/group/doctrine-svn?hl=en-GB
-~----------~----~----~----~------~----~------~--~---

Reply via email to