diff options
| author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-12 18:36:57 +0000 | 
|---|---|---|
| committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-12 18:36:57 +0000 | 
| commit | 393a528ef67d1d3ff17658c56e8ae0178687b975 (patch) | |
| tree | 52565277732669f68e319ebac004828889946de0 | |
| parent | 5865d938a8f5cc6e09870b02307abd0a7c7eca1e (diff) | |
| download | elgg-393a528ef67d1d3ff17658c56e8ae0178687b975.tar.gz elgg-393a528ef67d1d3ff17658c56e8ae0178687b975.tar.bz2 | |
Fixed typo in default plugins init + version bump
git-svn-id: https://code.elgg.org/elgg/trunk@3157 36083f99-b078-4883-b0ff-0f9b5a30f544
| -rw-r--r-- | actions/systemsettings/install.php | 2 | ||||
| -rw-r--r-- | version.php | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 9fbbd3802..a40049b8b 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -91,7 +91,7 @@  			{
  				$plugins = explode(',', $CONFIG->default_plugins);
  				foreach ($plugins as $plugin)
 -					enable_plugin(trim($plugins), $site->getGUID());
 +					enable_plugin(trim($plugin), $site->getGUID());
  			}
  			else
  			{
 diff --git a/version.php b/version.php index 186de0a77..1b1bafc82 100644 --- a/version.php +++ b/version.php @@ -13,7 +13,7 @@  	 * @link http://elgg.org/
  	 */
 -	   $version = 2009031102;  // YYYYMMDD   = Elgg Date
 +	   $version = 2009031201;  // YYYYMMDD   = Elgg Date
  	                           //         XX = Interim incrementer
  	   $release = '1.5 RC2';    // Human-friendly version name
 | 
