1
0
mirror of synced 2024-12-13 22:56:04 +03:00

Add decimal as a valid type to Formatter->quote()

This commit is contained in:
maniac3000 2007-09-20 21:40:23 +00:00
parent e05c0c8ab6
commit dc701e1345

View File

@ -148,6 +148,7 @@ class Doctrine_Formatter extends Doctrine_Connection_Module
case 'double': case 'double':
case 'float': case 'float':
case 'bool': case 'bool':
case 'decimal':
case 'int': case 'int':
return $input; return $input;
case 'array': case 'array':