diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-06 05:07:28 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-06 05:07:28 -0700 |
commit | 1ea69ae275245f65ee0bb8f959744f0896913a0c (patch) | |
tree | a9d8178f063b592a4df64172ded6ad08910c9147 /view/contact_selectors.php | |
parent | 6817c5d59ad578370a2b60dbdcdba16e43dbac65 (diff) | |
download | volse-hubzilla-1ea69ae275245f65ee0bb8f959744f0896913a0c.tar.gz volse-hubzilla-1ea69ae275245f65ee0bb8f959744f0896913a0c.tar.bz2 volse-hubzilla-1ea69ae275245f65ee0bb8f959744f0896913a0c.zip |
bizzy
Diffstat (limited to 'view/contact_selectors.php')
-rw-r--r-- | view/contact_selectors.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/contact_selectors.php b/view/contact_selectors.php index 186a50e7a..a7d3d0f5b 100644 --- a/view/contact_selectors.php +++ b/view/contact_selectors.php @@ -1,12 +1,12 @@ <?php -function select_contact_profile($current) { +function contact_profile_assign($current) { $o = ''; - $o .= "<select id=\"contact_profile_selector\" name=\"profile_id\" />"; + $o .= "<select id=\"contact_profile_selector\" name=\"profile_assign\" />"; - $r = q("SELECT `id` FROM `profile` WHERE `uid` = %d", + $r = q("SELECT `profile-name` FROM `profile` WHERE `uid` = %d", intval($_SESSION['uid'])); if(count($r)) { |