diff options
author | friendica <info@friendica.com> | 2013-03-11 16:13:09 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-11 16:13:09 -0700 |
commit | b86277b0ff7aa7ea5e04a646b628785fc31f0c3e (patch) | |
tree | 2774bc8509ea21cff7d32a47650227c9e914c46d /index.php | |
parent | bcf4592cb078b6afc3b8c65cd5832cee17a38ffc (diff) | |
download | volse-hubzilla-b86277b0ff7aa7ea5e04a646b628785fc31f0c3e.tar.gz volse-hubzilla-b86277b0ff7aa7ea5e04a646b628785fc31f0c3e.tar.bz2 volse-hubzilla-b86277b0ff7aa7ea5e04a646b628785fc31f0c3e.zip |
dangerous typo that removes all your hublocs, fix reshare formatting
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -29,7 +29,6 @@ $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false $a->language = get_best_language(); -load_translation_table($a->language); /** * @@ -53,9 +52,17 @@ if(! $install) { require_once("session.php"); load_hooks(); call_hooks('init_1'); + + load_translation_table($a->language); +} +else { + // load translations but do not check plugins as we have no database + load_translation_table($a->language,true); } + + /** * * Important stuff we always need to do. |