]> git.mxchange.org Git - friendica.git/commitdiff
missing arg to diaspora_transmit from share/unshare
authorFriendika <info@friendika.com>
Fri, 7 Oct 2011 22:49:41 +0000 (15:49 -0700)
committerFriendika <info@friendika.com>
Fri, 7 Oct 2011 22:49:41 +0000 (15:49 -0700)
boot.php
include/diaspora.php

index 43e50d334cc62710acca6e8859e5f05001db6e24..5b0164e5481ffd9ccd08ae82e6123e20bf5bd5ca 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -8,7 +8,7 @@ require_once("include/pgettext.php");
 require_once('include/nav.php');
 
 define ( 'FRIENDIKA_PLATFORM',     'Free Friendika');
-define ( 'FRIENDIKA_VERSION',      '2.3.1126' );
+define ( 'FRIENDIKA_VERSION',      '2.3.1127' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.21'    );
 define ( 'DB_UPDATE_VERSION',      1094      );
 
index 93e7d2cdbc57c3f90794ec51fabc64499c7eba1f..968aa2fd2d6a5b7046a35fcb84e74e1fc9fa74cd 100644 (file)
@@ -1008,7 +1008,7 @@ function diaspora_share($me,$contact) {
 
        $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
 
-       return(diaspora_transmit($owner,$contact,$slap));
+       return(diaspora_transmit($owner,$contact,$slap, false));
 }
 
 function diaspora_unshare($me,$contact) {
@@ -1025,7 +1025,7 @@ function diaspora_unshare($me,$contact) {
 
        $slap = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$me,$contact,$me['prvkey'],$contact['pubkey'])));
 
-       return(diaspora_transmit($owner,$contact,$slap));
+       return(diaspora_transmit($owner,$contact,$slap, false));
 
 }