mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
bug #186 - $type macro not replaced in diaspora 'like' message
This commit is contained in:
parent
0eceade2fe
commit
d5ce13ee12
3 changed files with 3 additions and 3 deletions
2
boot.php
2
boot.php
|
@ -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 );
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue