Merge branch 'master' of https://github.com/redmatrix/hubzilla
This commit is contained in:
commit
857e13e9b8
@ -382,7 +382,6 @@ require_once('include/api_auth.php');
|
||||
|
||||
|
||||
function api_item_get_user(&$a, $item) {
|
||||
global $usercache;
|
||||
|
||||
// The author is our direct contact, in a conversation with us.
|
||||
|
||||
@ -396,11 +395,11 @@ require_once('include/api_auth.php');
|
||||
$name = $item['author']['xchan_name'];
|
||||
|
||||
// Generating a random ID
|
||||
if (is_null($usercache[$nick]) or !array_key_exists($nick, $usercache))
|
||||
$usercache[$nick] = mt_rand(2000000, 2100000);
|
||||
if (! $nick)
|
||||
$nick = mt_rand(2000000, 2100000);
|
||||
|
||||
$ret = array(
|
||||
'id' => $usercache[$nick],
|
||||
'id' => $nick,
|
||||
'name' => $name,
|
||||
'screen_name' => $nick,
|
||||
'location' => '', //$uinfo[0]['default-location'],
|
||||
|
@ -3474,7 +3474,7 @@ function post_is_importable($item,$abook) {
|
||||
unobscure($item);
|
||||
|
||||
$text = prepare_text($item['body'],$item['mimetype']);
|
||||
$text = html2plain($text);
|
||||
$text = html2plain(($item['title']) ? $item['title'] . ' ' . $text : $text);
|
||||
|
||||
|
||||
$lang = null;
|
||||
|
@ -7,7 +7,12 @@ if [ $# -ne 1 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd extend/addon/$1
|
||||
if [ -d extend/addon/$1 ] ; then
|
||||
cd extend/addon/$1
|
||||
else
|
||||
echo "$1 not found. Aborting..."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -d .git ] ; then
|
||||
git pull
|
||||
|
@ -1 +1 @@
|
||||
2015-11-30.1232
|
||||
2015-12-01.1233
|
||||
|
Reference in New Issue
Block a user