Development

Changeset 8700

You must first sign up to be able to contribute.

Changeset 8700

Show
Ignore:
Timestamp:
04/30/08 18:40:54 (4 months ago)
Author:
FabianLange
Message:

added compat options to propel databse (sfPropelDatabase.class.php) (fixes #3364)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/plugins/sfPropelPlugin/lib/propel/database/sfPropelDatabase.class.php

    r8247 r8700  
    7171      $params = Creole::parseDSN($dsn); 
    7272 
    73       $options = array('phptype', 'hostspec', 'database', 'username', 'password', 'port', 'protocol', 'encoding', 'persistent', 'socket'); 
     73      $options = array('phptype', 'hostspec', 'database', 'username', 'password', 'port', 'protocol', 'encoding', 'persistent', 'socket','compat_assoc_lower','compat_rtrim_string'); 
    7474      foreach ($options as $option) 
    7575      { 
     
    9696          'protocol'   => $this->getParameter('protocol'), 
    9797          'socket'     => $this->getParameter('socket'), 
     98          'compat_assoc_lower' => $this->getParameter('compat_assoc_lower'), 
     99          'compat_rtrim_string' => $this->getParameter('compat_rtrim_string'), 
    98100        ), 
    99101      );