aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-06-09 09:09:13 +0200
committerMario Vavti <mario@mariovavti.com>2016-06-09 09:09:13 +0200
commit11045b92fb2a5af504a8d6cfba1f0fe67107e847 (patch)
tree4170ca20120a23e40bb98c6d6ac57a59b827dc28 /boot.php
parent655290b022f0443a121790ef7f0c1d4ddeecb289 (diff)
parent2ad5010dc3f2f8d077a3228915d28a3e256f6e13 (diff)
downloadvolse-hubzilla-11045b92fb2a5af504a8d6cfba1f0fe67107e847.tar.gz
volse-hubzilla-11045b92fb2a5af504a8d6cfba1f0fe67107e847.tar.bz2
volse-hubzilla-11045b92fb2a5af504a8d6cfba1f0fe67107e847.zip
Merge branch 'dev' into sabre32
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index 76312ed4e..a31d98dbb 100755
--- a/boot.php
+++ b/boot.php
@@ -1465,6 +1465,12 @@ function check_config(&$a) {
@unlink($lockfile);
//send the administrator an e-mail
file_put_contents($lockfile, $x);
+
+ $r = q("select account_language from account where account_email = '%s' limit 1",
+ dbesc(App::$config['system']['admin_email'])
+ );
+ push_lang(($r) ? $r[0]['account_language'] : 'en');
+
$email_tpl = get_intltext_template("update_fail_eml.tpl");
$email_msg = replace_macros($email_tpl, array(
@@ -1482,6 +1488,7 @@ function check_config(&$a) {
. 'Content-transfer-encoding: 8bit' );
//try the logger
logger('CRITICAL: Update Failed: ' . $x);
+ pop_lang();
}
else
set_config('database','update_r' . $x, 'success');