aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-12-02 09:44:42 +0100
committerMario Vavti <mario@mariovavti.com>2015-12-02 09:44:42 +0100
commit857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad (patch)
tree2f5efa0bee35763b066919f0048208f5de4726c2
parent593423434c0c0e8d1ebb43d97b2dda7e6b4d67bd (diff)
parent25caeee8547df73a7162dc6de30a030fa0bceea8 (diff)
downloadvolse-hubzilla-857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad.tar.gz
volse-hubzilla-857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad.tar.bz2
volse-hubzilla-857e13e9b8ee4fe2c27cd9737f0396cb669cb8ad.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla
-rw-r--r--include/api.php7
-rwxr-xr-xinclude/items.php2
-rwxr-xr-xutil/update_addon_repo7
-rw-r--r--version.inc2
4 files changed, 11 insertions, 7 deletions
diff --git a/include/api.php b/include/api.php
index f279b2aa3..e60583a01 100644
--- a/include/api.php
+++ b/include/api.php
@@ -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'],
diff --git a/include/items.php b/include/items.php
index 46b396ad2..ef1867c14 100755
--- a/include/items.php
+++ b/include/items.php
@@ -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;
diff --git a/util/update_addon_repo b/util/update_addon_repo
index 5b531e6a5..ba1862f4b 100755
--- a/util/update_addon_repo
+++ b/util/update_addon_repo
@@ -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
diff --git a/version.inc b/version.inc
index 936c9fe07..9819f1c95 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-11-30.1232
+2015-12-01.1233