]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
FR update to the strings THX Perig
[friendica.git] / mod / profperm.php
index 33479cad128cbcefe8038319c9882c18606dc1da..077f695bea14c15be10f592258847bcd6e3d1198 100644 (file)
@@ -6,7 +6,7 @@ function profperm_init(&$a) {
                return;
 
        $which = $a->user['nickname'];
-       $profile = $a->argv[1];         
+       $profile = $a->argv[1];
 
        profile_load($a,$which,$profile);
 
@@ -36,8 +36,9 @@ function profperm_content(&$a) {
 
 
        if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
-               $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0 
-                       AND `network` = 'dfrn' AND `id` = %d AND `uid` = %d LIMIT 1",
+               $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0
+                       AND `network` = '%s' AND `id` = %d AND `uid` = %d LIMIT 1",
+                       dbesc(NETWORK_DFRN),
                        intval($a->argv[2]),
                        intval(local_user())
                );
@@ -71,13 +72,13 @@ function profperm_content(&$a) {
 
                if($change) {
                        if(in_array($change,$ingroup)) {
-                               q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1",
+                               q("UPDATE `contact` SET `profile-id` = 0 WHERE `id` = %d AND `uid` = %d",
                                        intval($change),
                                        intval(local_user())
                                );
                        }
                        else {
-                               q("UPDATE `contact` SET `profile-id` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
+                               q("UPDATE `contact` SET `profile-id` = %d WHERE `id` = %d AND `uid` = %d",
                                        intval($a->argv[1]),
                                        intval($change),
                                        intval(local_user())
@@ -109,9 +110,11 @@ function profperm_content(&$a) {
        $o .= '<div id="prof-update-wrapper">';
        if($change) 
                $o = '';
-
-       $o .= '<div id="prof-members">';
+       
+       $o .= '<div id="prof-members-title">';
        $o .= '<h3>' . t('Visible To') . '</h3>';
+       $o .= '</div>';
+       $o .= '<div id="prof-members">';
 
        $textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false);
 
@@ -123,12 +126,16 @@ function profperm_content(&$a) {
        }
        $o .= '</div><div id="prof-members-end"></div>';
        $o .= '<hr id="prof-separator" />';
+
+       $o .= '<div id="prof-all-contcts-title">';
+       $o .= '<h3>' . t("All Contacts \x28with secure profile access\x29") . '</h3>';
+       $o .= '</div>';
        $o .= '<div id="prof-all-contacts">';
 
-               $o .= '<h3>' . t("All Contacts \x28with secure profile access\x29") . '</h3>';
-               $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 
-                       AND `network` = 'dfrn' ORDER BY `name` ASC",
-                       intval(local_user())
+               $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0
+                       AND `network` = '%s' ORDER BY `name` ASC",
+                       intval(local_user()),
+                       dbesc(NETWORK_DFRN)
                );
 
                if(count($r)) {