]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixes #4133 updated type in plugin manifest test
authorcash <cash.costello@gmail.com>
Fri, 18 Nov 2011 23:24:27 +0000 (18:24 -0500)
committercash <cash.costello@gmail.com>
Tue, 29 Nov 2011 02:44:00 +0000 (21:44 -0500)
engine/classes/ElggPluginManifest.php
engine/tests/api/plugins.php

index eacc16455875db7f1aebec4621d8080d7c4b12a5..7592eb6676c7191ff016c1e51544f5cab67e919b 100644 (file)
@@ -553,7 +553,7 @@ class ElggPluginManifest {
        }
 
        /**
-        * Returns the admin interface to use.
+        * Should this plugin be activated when Elgg is installed
         *
         *  @return bool
         */
index a0faaff0ebe7dbf450c6af089252fe88c370b112..ac38f34eadf78ea4e7d137a68c0782bc128b64d7 100644 (file)
@@ -105,7 +105,8 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest {
                                array('type' => 'plugin', 'name' => 'facebook_connect', 'version' => 1.0),
                        ),
 
-                       'activate_on_install' => true
+                       // string because we are reading from a file
+                       'activate_on_install' => 'true',
                );
 
                $this->assertEqual($this->manifest18->getManifest(), $manifest_array);