diff options
author | Friendika <info@friendika.com> | 2011-10-31 14:30:27 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-31 14:30:27 -0700 |
commit | d5ce13ee12f6d9fcebf905213b66938fb1ceb06c (patch) | |
tree | e8f5b2c1897ff1b3ad22125d25278c04e84338e5 | |
parent | 0eceade2fe0bb432543d8c48b3e9e6c5f3a3b00c (diff) | |
download | volse-hubzilla-d5ce13ee12f6d9fcebf905213b66938fb1ceb06c.tar.gz volse-hubzilla-d5ce13ee12f6d9fcebf905213b66938fb1ceb06c.tar.bz2 volse-hubzilla-d5ce13ee12f6d9fcebf905213b66938fb1ceb06c.zip |
bug #186 - $type macro not replaced in diaspora 'like' message
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | view/diaspora_like.tpl | 2 | ||||
-rw-r--r-- | view/diaspora_like_relay.tpl | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDIKA_PLATFORM', 'Free Friendika'); -define ( 'FRIENDIKA_VERSION', '2.3.1150' ); +define ( 'FRIENDIKA_VERSION', '2.3.1151' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DB_UPDATE_VERSION', 1099 ); diff --git a/view/diaspora_like.tpl b/view/diaspora_like.tpl index 76356eb29..a777aeebe 100644 --- a/view/diaspora_like.tpl +++ b/view/diaspora_like.tpl @@ -1,7 +1,7 @@ <XML> <post> <like> - <target_type>$type</target_type> + <target_type>$target_type</target_type> <guid>$guid</guid> <parent_guid>$parent_guid</parent_guid> <author_signature>$authorsig</author_signature> diff --git a/view/diaspora_like_relay.tpl b/view/diaspora_like_relay.tpl index 6feba96ad..65559b05b 100644 --- a/view/diaspora_like_relay.tpl +++ b/view/diaspora_like_relay.tpl @@ -2,7 +2,7 @@ <post> <like> <guid>$guid</guid> - <target_type>$type</target_type> + <target_type>$target_type</target_type> <parent_guid>$parent_guid</parent_guid> <parent_author_signature>$parentsig</parent_author_signature> <author_signature>$authrosig</author_signature> |