Ticket #2539: sfPropelDatabase.class.php.patch
| File sfPropelDatabase.class.php.patch, 1.0 kB (added by Krasimir.Angelov, 1 year ago) |
|---|
-
lib/addon/propel/database/sfPropelDatabase.class.php
old new 68 68 require_once('creole/Creole.php'); 69 69 $params = Creole::parseDSN($dsn); 70 70 71 $options = array('phptype', 'hostspec', 'database', 'username', 'password', 'port', 'protocol', 'encoding', 'persistent' );71 $options = array('phptype', 'hostspec', 'database', 'username', 'password', 'port', 'protocol', 'encoding', 'persistent', 'socket'); 72 72 foreach ($options as $option) 73 73 { 74 74 if (!$this->getParameter($option) && isset($params[$option])) … … 92 92 'encoding' => $this->getParameter('encoding'), 93 93 'persistent' => $this->getParameter('persistent'), 94 94 'protocol' => $this->getParameter('protocol'), 95 'socket' => $this->getParameter('socket'), 95 96 ), 96 97 ); 97 98 }