summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-07-17 17:36:12 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-07-17 17:36:12 +0000
commit6a2d6a7b13d0f39687b0bf12a54e6579016b06d3 (patch)
tree639bfbed89b9dacc880c5ff7a95d9d17eaf70f3f /admin
parenta5665a33ebab60df9cb84664730f1d572a568f7c (diff)
downloadmessages-6a2d6a7b13d0f39687b0bf12a54e6579016b06d3.tar.gz
messages-6a2d6a7b13d0f39687b0bf12a54e6579016b06d3.tar.bz2
messages-6a2d6a7b13d0f39687b0bf12a54e6579016b06d3.zip
Merge recent changes from R1 to HEAD - never doing this again.
Diffstat (limited to 'admin')
-rw-r--r--admin/schema_inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index 3663e95..a487165 100644
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -26,10 +26,10 @@ $tables = array(
global $gBitInstaller;
foreach( array_keys( $tables ) AS $tableName ) {
- $gBitInstaller->registerSchemaTable( MESSAGES_PKG_NAME, $tableName, $tables[$tableName] );
+ $gBitInstaller->registerSchemaTable( MESSU_PKG_NAME, $tableName, $tables[$tableName] );
}
-$gBitInstaller->registerPackageInfo( MESSAGES_PKG_NAME, array(
+$gBitInstaller->registerPackageInfo( MESSU_PKG_NAME, array(
'description' => "An intra-site messaging system for users.",
'license' => '<a href="http://www.gnu.org/licenses/licenses.html#LGPL">LGPL</a>',
'version' => '0.1',
@@ -39,7 +39,7 @@ $gBitInstaller->registerPackageInfo( MESSAGES_PKG_NAME, array(
// ### Default User Permissions
-$gBitInstaller->registerUserPermissions( MESSAGES_PKG_NAME, array(
+$gBitInstaller->registerUserPermissions( MESSU_PKG_NAME, array(
array('bit_p_messages', 'Can use the messaging system', 'registered', 'messages'),
) );
@@ -50,6 +50,6 @@ $indices = array (
);
// TODO - SPIDERR - following seems to cause time _decrease_ cause bigint on postgres. need more investigation
// 'tiki_blog_posts_created_idx' => array( 'table' => 'tiki_blog_posts', 'cols' => 'created', 'opts' => NULL ),
-$gBitInstaller->registerSchemaIndexes( MESSAGES_PKG_NAME, $indices );
+$gBitInstaller->registerSchemaIndexes( MESSU_PKG_NAME, $indices );
?>