Merge pull request #3363 from sesom42/develop
authorHypolite Petovan <mrpetovan@gmail.com>
Wed, 19 Apr 2017 19:45:38 +0000 (15:45 -0400)
committerGitHub <noreply@github.com>
Wed, 19 Apr 2017 19:45:38 +0000 (15:45 -0400)
displays the correct profile for contacts that have set the default profile

include/contact_selectors.php

index 56c0328..f5dfdc1 100644 (file)
@@ -9,12 +9,12 @@ function contact_profile_assign($current,$foreign_net) {
 
        $o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" />\r\n";
 
-       $r = q("SELECT `id`, `profile-name` FROM `profile` WHERE `uid` = %d",
+       $r = q("SELECT `id`, `profile-name`, `is-default` FROM `profile` WHERE `uid` = %d",
                        intval($_SESSION['uid']));
 
        if (dbm::is_result($r)) {
                foreach ($r as $rr) {
-                       $selected = (($rr['id'] == $current) ? " selected=\"selected\" " : "");
+                       $selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : "");
                        $o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
                }
        }