Merge branch 'sabre32' of https://github.com/redmatrix/hubzilla into sabre32
This commit is contained in:
commit
9b96fe66a6
7
boot.php
7
boot.php
@ -1465,6 +1465,12 @@ function check_config(&$a) {
|
|||||||
@unlink($lockfile);
|
@unlink($lockfile);
|
||||||
//send the administrator an e-mail
|
//send the administrator an e-mail
|
||||||
file_put_contents($lockfile, $x);
|
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_tpl = get_intltext_template("update_fail_eml.tpl");
|
||||||
$email_msg = replace_macros($email_tpl, array(
|
$email_msg = replace_macros($email_tpl, array(
|
||||||
@ -1482,6 +1488,7 @@ function check_config(&$a) {
|
|||||||
. 'Content-transfer-encoding: 8bit' );
|
. 'Content-transfer-encoding: 8bit' );
|
||||||
//try the logger
|
//try the logger
|
||||||
logger('CRITICAL: Update Failed: ' . $x);
|
logger('CRITICAL: Update Failed: ' . $x);
|
||||||
|
pop_lang();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
set_config('database','update_r' . $x, 'success');
|
set_config('database','update_r' . $x, 'success');
|
||||||
|
@ -1904,10 +1904,15 @@ require_once('include/api_auth.php');
|
|||||||
|
|
||||||
$ret = array();
|
$ret = array();
|
||||||
|
|
||||||
|
$x = array('items' => $r,'api_user' => api_user(),'user_info' => $user_info);
|
||||||
|
call_hooks('api_format_items',$x);
|
||||||
|
$r = $x['items'];
|
||||||
|
|
||||||
if(! $r)
|
if(! $r)
|
||||||
return $ret;
|
return $ret;
|
||||||
|
|
||||||
foreach($r as $item) {
|
foreach($r as $item) {
|
||||||
|
|
||||||
localize_item($item);
|
localize_item($item);
|
||||||
|
|
||||||
$status_user = (($item['author_xchan']==$user_info['guid'])?$user_info: api_item_get_user($a,$item));
|
$status_user = (($item['author_xchan']==$user_info['guid'])?$user_info: api_item_get_user($a,$item));
|
||||||
|
Reference in New Issue
Block a user