Skip to content
Snippets Groups Projects
Commit 47da93e8 authored by Jared Hancock's avatar Jared Hancock
Browse files

db: Fix missing definition of the %translation table

parent 07c1d79f
No related branches found
No related tags found
No related merge requests found
...@@ -131,6 +131,7 @@ class Bootstrap { ...@@ -131,6 +131,7 @@ class Bootstrap {
define('PLUGIN_TABLE', $prefix.'plugin'); define('PLUGIN_TABLE', $prefix.'plugin');
define('SEQUENCE_TABLE', $prefix.'sequence'); define('SEQUENCE_TABLE', $prefix.'sequence');
define('TRANSLATION_TABLE', $prefix.'translation');
define('API_KEY_TABLE',$prefix.'api_key'); define('API_KEY_TABLE',$prefix.'api_key');
define('TIMEZONE_TABLE',$prefix.'timezone'); define('TIMEZONE_TABLE',$prefix.'timezone');
......
...@@ -408,7 +408,7 @@ class DatabaseExporter { ...@@ -408,7 +408,7 @@ class DatabaseExporter {
TIMEZONE_TABLE, SESSION_TABLE, PAGE_TABLE, TIMEZONE_TABLE, SESSION_TABLE, PAGE_TABLE,
FORM_SEC_TABLE, FORM_FIELD_TABLE, LIST_TABLE, LIST_ITEM_TABLE, FORM_SEC_TABLE, FORM_FIELD_TABLE, LIST_TABLE, LIST_ITEM_TABLE,
FORM_ENTRY_TABLE, FORM_ANSWER_TABLE, USER_TABLE, USER_EMAIL_TABLE, FORM_ENTRY_TABLE, FORM_ANSWER_TABLE, USER_TABLE, USER_EMAIL_TABLE,
PLUGIN_TABLE, THREAD_COLLABORATOR_TABLE, PLUGIN_TABLE, THREAD_COLLABORATOR_TABLE, TRANSLATION_TABLE,
USER_ACCOUNT_TABLE, ORGANIZATION_TABLE, NOTE_TABLE USER_ACCOUNT_TABLE, ORGANIZATION_TABLE, NOTE_TABLE
); );
......
...@@ -858,7 +858,7 @@ require_once INCLUDE_DIR . 'class.orm.php'; ...@@ -858,7 +858,7 @@ require_once INCLUDE_DIR . 'class.orm.php';
class CustomDataTranslation extends VerySimpleModel { class CustomDataTranslation extends VerySimpleModel {
static $meta = array( static $meta = array(
'table' => 'ost_translation', 'table' => TRANSLATION_TABLE,
'pk' => array('id') 'pk' => array('id')
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment