]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
input lib depends on pageowner lib now
authorCash Costello <cash.costello@gmail.com>
Thu, 3 Nov 2011 02:17:08 +0000 (22:17 -0400)
committerCash Costello <cash.costello@gmail.com>
Thu, 3 Nov 2011 02:17:08 +0000 (22:17 -0400)
engine/start.php
install/ElggInstaller.php

index fc3aa004e2d8b9fe1c3705510bb566dc28d5ea17..00bdc319758c709a0dd11898024901c3dbe737cb 100644 (file)
@@ -60,7 +60,8 @@ $lib_dir = dirname(__FILE__) . '/lib/';
  */
 $required_files = array(
        'elgglib.php', 'views.php', 'access.php', 'system_log.php', 'export.php',
-       'sessions.php', 'languages.php', 'input.php', 'cache.php', 'output.php'
+       'sessions.php', 'languages.php', 'pageowner.php', 'input.php', 'cache.php',
+       'output.php'
 );
 
 // include bootstraping libs
@@ -96,7 +97,7 @@ $lib_files = array(
        'extender.php', 'filestore.php', 'group.php', 
        'location.php', 'mb_wrapper.php', 'memcache.php', 'metadata.php',
        'metastrings.php', 'navigation.php', 'notification.php', 'objects.php',
-       'opendd.php', 'pagehandler.php', 'pageowner.php', 'pam.php', 'plugins.php',
+       'opendd.php', 'pagehandler.php', 'pam.php', 'plugins.php',
        'private_settings.php', 'relationships.php', 'river.php', 'sites.php',
        'statistics.php', 'tags.php', 'user_settings.php', 'users.php',
        'upgrade.php', 'web_services.php', 'widgets.php', 'xml.php', 'xml-rpc.php',
index 657f0907f95c72287a0c7636033abe97ce4d3e87..d556ba74426137b48a2c302129dacf79433e647c 100644 (file)
@@ -728,8 +728,9 @@ class ElggInstaller {
 
                // bootstrapping with required files in a required order
                $required_files = array(
-                       'elgglib.php', 'views.php', 'access.php', 'system_log.php', 'export.php', 'configuration.php',
-                       'sessions.php', 'languages.php', 'input.php', 'cache.php', 'output.php'
+                       'elgglib.php', 'views.php', 'access.php', 'system_log.php', 'export.php', 
+                       'configuration.php', 'sessions.php', 'languages.php', 'pageowner.php',
+                       'input.php', 'cache.php', 'output.php',
                );
 
                foreach ($required_files as $file) {
@@ -785,7 +786,7 @@ class ElggInstaller {
                                'memcache.php', 'metadata.php', 'metastrings.php',
                                'navigation.php', 'notification.php',
                                'objects.php', 'opendd.php', 'pagehandler.php',
-                               'pageowner.php', 'pam.php', 'plugins.php',
+                               'pam.php', 'plugins.php',
                                'private_settings.php', 'relationships.php', 'river.php',
                                'sites.php', 'statistics.php', 'tags.php', 'user_settings.php',
                                'users.php', 'upgrade.php', 'web_services.php',