diff options
| author | Christian Fowler <spider@viovio.com> | 2005-06-28 07:45:53 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2005-06-28 07:45:53 +0000 |
| commit | a5665a33ebab60df9cb84664730f1d572a568f7c (patch) | |
| tree | cae5b0009ce571a0efc4f8797844fd92a5bdc6c4 /admin | |
| parent | db60c85506a212d5eae4ffc6eecf43ece2a9b7f9 (diff) | |
| download | messages-a5665a33ebab60df9cb84664730f1d572a568f7c.tar.gz messages-a5665a33ebab60df9cb84664730f1d572a568f7c.tar.bz2 messages-a5665a33ebab60df9cb84664730f1d572a568f7c.zip | |
Merge recent changes from R1 into HEAD
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/schema_inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 905d995..3663e95 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( MESSU_PKG_NAME, $tableName, $tables[$tableName] ); + $gBitInstaller->registerSchemaTable( MESSAGES_PKG_NAME, $tableName, $tables[$tableName] ); } -$gBitInstaller->registerPackageInfo( MESSU_PKG_NAME, array( +$gBitInstaller->registerPackageInfo( MESSAGES_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,8 +39,8 @@ $gBitInstaller->registerPackageInfo( MESSU_PKG_NAME, array( // ### Default User Permissions -$gBitInstaller->registerUserPermissions( FISHEYE_PKG_NAME, array( - array('bit_p_messages', 'Can use the messaging system', 'registered', 'messu'), +$gBitInstaller->registerUserPermissions( MESSAGES_PKG_NAME, array( + array('bit_p_messages', 'Can use the messaging system', 'registered', 'messages'), ) ); // ### Indexes @@ -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( MESSU_PKG_NAME, $indices ); +$gBitInstaller->registerSchemaIndexes( MESSAGES_PKG_NAME, $indices ); ?> |
