aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-08 15:18:34 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-08 15:18:34 -0700
commit2656aeaf9cb8482e22055e9c6788fd1593ff3744 (patch)
tree76ed286ff24164eaefd8f92889612400e227555e
parentec5d91d8cfcb21ce09f264733a4c587177befca5 (diff)
downloadvolse-hubzilla-2656aeaf9cb8482e22055e9c6788fd1593ff3744.tar.gz
volse-hubzilla-2656aeaf9cb8482e22055e9c6788fd1593ff3744.tar.bz2
volse-hubzilla-2656aeaf9cb8482e22055e9c6788fd1593ff3744.zip
ensure diaspora_signature is converted to json before we store it.
-rwxr-xr-xinclude/items.php3
-rw-r--r--util/messages.po24
-rw-r--r--version.inc2
3 files changed, 18 insertions, 11 deletions
diff --git a/include/items.php b/include/items.php
index 1551a069a..01b4a3460 100755
--- a/include/items.php
+++ b/include/items.php
@@ -866,6 +866,9 @@ function get_item_elements($x) {
$arr['sig'] = (($x['signature']) ? htmlspecialchars($x['signature'], ENT_COMPAT,'UTF-8',false) : '');
+ if(array_key_exists('diaspora_signature',$x) && is_array($x['diaspora_signature']))
+ $x['diaspora_signature'] = json_encode($x['diaspora_signature']);
+
$arr['diaspora_meta'] = (($x['diaspora_signature']) ? json_encode(crypto_encapsulate($x['diaspora_signature'],$key)) : '');
$arr['object'] = activity_sanitise($x['object']);
$arr['target'] = activity_sanitise($x['target']);
diff --git a/util/messages.po b/util/messages.po
index d645321f7..949158f6d 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: 2015-07-31.1110\n"
+"Project-Id-Version: 2015-08-07.1117\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-31 00:03-0700\n"
+"POT-Creation-Date: 2015-08-07 00:03-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1019,7 +1019,7 @@ msgstr ""
#: ../../include/RedDAV/RedBrowser.php:257
#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362
-#: ../../mod/events.php:493 ../../mod/photos.php:718 ../../mod/photos.php:1248
+#: ../../mod/photos.php:718 ../../mod/photos.php:1248
msgid "Upload"
msgstr ""
@@ -3037,14 +3037,14 @@ msgstr ""
msgid "Visible to specific connections."
msgstr ""
-#: ../../include/items.php:4209 ../../mod/thing.php:74
+#: ../../include/items.php:4215 ../../mod/thing.php:74
#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20
#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225
#: ../../mod/display.php:36
msgid "Item not found."
msgstr ""
-#: ../../include/items.php:4282 ../../include/attach.php:137
+#: ../../include/items.php:4288 ../../include/attach.php:137
#: ../../include/attach.php:184 ../../include/attach.php:247
#: ../../include/attach.php:261 ../../include/attach.php:305
#: ../../include/attach.php:319 ../../include/attach.php:350
@@ -3087,26 +3087,26 @@ msgstr ""
msgid "Permission denied."
msgstr ""
-#: ../../include/items.php:4684 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:4690 ../../mod/group.php:38 ../../mod/group.php:140
#: ../../mod/bulksetclose.php:51
msgid "Collection not found."
msgstr ""
-#: ../../include/items.php:4700
+#: ../../include/items.php:4706
msgid "Collection is empty."
msgstr ""
-#: ../../include/items.php:4707
+#: ../../include/items.php:4713
#, php-format
msgid "Collection: %s"
msgstr ""
-#: ../../include/items.php:4717 ../../mod/connedit.php:662
+#: ../../include/items.php:4723 ../../mod/connedit.php:662
#, php-format
msgid "Connection: %s"
msgstr ""
-#: ../../include/items.php:4719
+#: ../../include/items.php:4725
msgid "Connection not found."
msgstr ""
@@ -4429,6 +4429,10 @@ msgstr ""
msgid "Export"
msgstr ""
+#: ../../mod/events.php:493
+msgid "Import"
+msgstr ""
+
#: ../../mod/events.php:518
msgid "Event removed"
msgstr ""
diff --git a/version.inc b/version.inc
index a898bfc30..699013c51 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2015-08-06.1116
+2015-08-08.1118