From 1d05c564d498866a8d653e6940f3e79ab2e4cb8e Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 7 Oct 2011 15:49:41 -0700 Subject: [PATCH] missing arg to diaspora_transmit from share/unshare --- boot.php | 2 +- include/diaspora.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 43e50d33..5b0164e5 100644 --- 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 ); diff --git a/include/diaspora.php b/include/diaspora.php index 93e7d2cd..968aa2fd 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -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)); }