]> git.mxchange.org Git - friendica.git/commitdiff
bug #251 - privacy settings not working via API
authorfriendica <info@friendica.com>
Thu, 12 Jan 2012 21:58:17 +0000 (13:58 -0800)
committerfriendica <info@friendica.com>
Thu, 12 Jan 2012 21:58:17 +0000 (13:58 -0800)
boot.php
mod/item.php

index d22f77504dc27fbeefbc9005bd9931f130bc227c..1c20bebc5c393224f523ff8d4ee52bd80e59e571 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -9,7 +9,7 @@ require_once('include/nav.php');
 require_once('include/cache.php');
 
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
-define ( 'FRIENDICA_VERSION',      '2.3.1223' );
+define ( 'FRIENDICA_VERSION',      '2.3.1224' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.22'    );
 define ( 'DB_UPDATE_VERSION',      1115      );
 
index 93becdee4cad0270dc41c8de9490a89422988536..5fb0ef43700e665e00484ba3750439e6fdcc8435 100644 (file)
@@ -37,8 +37,8 @@ function item_post(&$a) {
        }
 
        call_hooks('post_local_start', $_POST);
-
-       logger('postvars' . print_r($_POST,true));
+//     logger('postinput ' . file_get_contents('php://input'));
+       logger('postvars' . print_r($_POST,true), LOGGER_DATA);
 
        $api_source = ((x($_POST,'api_source') && $_POST['api_source']) ? true : false);
        $return_path = ((x($_POST,'return')) ? $_POST['return'] : '');
@@ -211,10 +211,10 @@ function item_post(&$a) {
        }
 
        if(($api_source) 
-               && (! array_key_exists('allow_cid',$_REQUEST))
-               && (! array_key_exists('allow_gid',$_REQUEST))
-               && (! array_key_exists('deny_cid',$_REQUEST))
-               && (! array_key_exists('deny_gid',$_REQUEST))) {
+               && (! array_key_exists('contact_allow',$_REQUEST))
+               && (! array_key_exists('group_allow',$_REQUEST))
+               && (! array_key_exists('contact_deny',$_REQUEST))
+               && (! array_key_exists('group_deny',$_REQUEST))) {
                $str_group_allow   = $user['allow_gid'];
                $str_contact_allow = $user['allow_cid'];
                $str_group_deny    = $user['deny_gid'];