Author: Jonathan.Wage
Date: 2010-01-27 03:41:33 +0100 (Wed, 27 Jan 2010)
New Revision: 27222
Modified:
plugins/sfSympalPlugin/trunk/lib/plugins/sfSympalInstallPlugin/lib/sfSympalInstall.class.php
Log:
[1.4][sfSympalPlugin][1.0] Fixing issue with install fixtures loading
Modified:
plugins/sfSympalPlugin/trunk/lib/plugins/sfSympalInstallPlugin/lib/sfSympalInstall.class.php
===================================================================
---
plugins/sfSympalPlugin/trunk/lib/plugins/sfSympalInstallPlugin/lib/sfSympalInstall.class.php
2010-01-27 02:29:48 UTC (rev 27221)
+++
plugins/sfSympalPlugin/trunk/lib/plugins/sfSympalInstallPlugin/lib/sfSympalInstall.class.php
2010-01-27 02:41:33 UTC (rev 27222)
@@ -231,10 +231,10 @@
$path = sfConfig::get('sf_data_dir').'/fixtures/install';
if (is_dir($path))
{
- $fixtures = array();
- $fixtures[] = $path;
- $fixtures[] =
$this->_configuration->getPluginConfiguration('sfSympalPlugin')->getRootDir().'/data/fixtures/install.yml';
- $fixtures[] =
$this->_configuration->getPluginConfiguration('sfSympalUserPlugin')->getRootDir().'/data/fixtures/install.yml';
+ $fixtures = array(
+
$this->_configuration->getPluginConfiguration('sfSympalPlugin')->getRootDir().'/data/fixtures/install.yml',
+ $path
+ );
} else {
$fixtures = true;
}
--
You received this message because you are subscribed to the Google Groups
"symfony 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.com/group/symfony-svn?hl=en.