summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-07-17 17:36:08 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-07-17 17:36:08 +0000
commitb8b71e4e4920dd788974bba8f984d267a4d8287b (patch)
treea709c36a76d1bb5a03ac5bc16faac1708676dcb3 /admin
parent8cc85ebf91ddcb1cd210dc2ef8a1feba2cdc15c3 (diff)
downloadlanguages-b8b71e4e4920dd788974bba8f984d267a4d8287b.tar.gz
languages-b8b71e4e4920dd788974bba8f984d267a4d8287b.tar.bz2
languages-b8b71e4e4920dd788974bba8f984d267a4d8287b.zip
Merge recent changes from R1 to HEAD - never doing this again.
Diffstat (limited to 'admin')
-rw-r--r--admin/schema_inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index ff6dc9b..21fa9c6 100644
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -33,7 +33,7 @@ $tables = array(
global $gBitInstaller;
foreach( array_keys( $tables ) AS $tableName ) {
- $gBitInstaller->registerSchemaTable( LANGUAGES_PKG_DIR, $tableName, $tables[$tableName], TRUE );
+ $gBitInstaller->registerSchemaTable( LANGUAGES_PKG_NAME, $tableName, $tables[$tableName], TRUE );
}
$indices = array (
@@ -46,7 +46,7 @@ $indices = array (
'tiki_i18n_version_ver_idx' => array( 'table' => 'tiki_i18n_version_map', 'cols' => '`version`', 'opts' => NULL ),
);
-$gBitInstaller->registerSchemaIndexes( LANGUAGES_PKG_DIR, $indices );
+$gBitInstaller->registerSchemaIndexes( LANGUAGES_PKG_NAME, $indices );
$gBitInstaller->registerPackageInfo( LANGUAGES_PKG_NAME, array(
'description' => "This package allows you to translate your site into a different language.",