summaryrefslogtreecommitdiff
path: root/admin/schema_inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/schema_inc.php')
-rw-r--r--admin/schema_inc.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index 1625ae2..f9be513 100644
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -135,6 +135,14 @@ $gBitInstaller->registerModules( $moduleHash );
$gBitInstaller->registerUserPermissions( KERNEL_PKG_NAME, array(
array('p_admin', 'Can manage users groups and permissions and all aspects of site management', 'admin', KERNEL_PKG_NAME ),
array('p_access_closed_site', 'Can access site when closed', 'admin', KERNEL_PKG_NAME)
-) );
+));
+
+// Package dependencies
+$gBitInstaller->registerDependencies( KERNEL_PKG_NAME, array(
+ 'liberty' => array( 'min' => '2.1.0' ),
+ 'users' => array( 'min' => '2.1.0' ),
+ 'themes' => array( 'min' => '2.0.0' ),
+ 'languages' => array( 'min' => '2.0.0' ),
+));
?>