Development

Changeset 8699

You must first sign up to be able to contribute.

Changeset 8699

Show
Ignore:
Timestamp:
04/30/08 18:40:41 (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.0/lib/addon/propel/database/sfPropelDatabase.class.php

    r6371 r8699  
    6969      $params = Creole::parseDSN($dsn); 
    7070 
    71       $options = array('phptype', 'hostspec', 'database', 'username', 'password', 'port', 'protocol', 'encoding', 'persistent', 'socket'); 
     71      $options = array('phptype', 'hostspec', 'database', 'username', 'password', 'port', 'protocol', 'encoding', 'persistent', 'socket','compat_assoc_lower','compat_rtrim_string'); 
    7272      foreach ($options as $option) 
    7373      { 
     
    9494          'protocol'   => $this->getParameter('protocol'), 
    9595          'socket'     => $this->getParameter('socket'), 
     96          'compat_assoc_lower' => $this->getParameter('compat_assoc_lower'), 
     97          'compat_rtrim_string' => $this->getParameter('compat_rtrim_string'), 
    9698        ), 
    9799      );