aboutsummaryrefslogtreecommitdiffstats
path: root/view/profile_selectors.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-08-19 05:29:43 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-08-19 05:29:43 -0700
commitb16be9e76a9288f0b6803dbaa989a7bdee70d49d (patch)
treee7248be8bf8301038b5f5f40e93e59f3b7870e1a /view/profile_selectors.php
parente0045a43e22082e0a47fd57288105a21311e911a (diff)
downloadvolse-hubzilla-b16be9e76a9288f0b6803dbaa989a7bdee70d49d.tar.gz
volse-hubzilla-b16be9e76a9288f0b6803dbaa989a7bdee70d49d.tar.bz2
volse-hubzilla-b16be9e76a9288f0b6803dbaa989a7bdee70d49d.zip
marital "heart" status no longer an array
Diffstat (limited to 'view/profile_selectors.php')
-rw-r--r--view/profile_selectors.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/profile_selectors.php b/view/profile_selectors.php
index 03dd2aacd..46f5c8b68 100644
--- a/view/profile_selectors.php
+++ b/view/profile_selectors.php
@@ -29,7 +29,7 @@ function sexpref_selector($current="",$suffix="") {
function marital_selector($current="",$suffix="") {
$select = array('', t('Single'), t('Lonely'), t('Available'), t('Unavailable'), t('Dating'), t('Unfaithful'), t('Sex Addict'), t('Friends'), t('Friends/Benefits'), t('Casual'), t('Engaged'), t('Married'), t('Partners'), t('Cohabiting'), t('Happy'), t('Not Looking'), t('Swinger'), t('Betrayed'), t('Separated'), t('Unstable'), t('Divorced'), t('Widowed'), t('Uncertain'), t('Complicated'), t('Don\'t care'), t('Ask me') );
- $o .= "<select name=\"marital[]\" id=\"marital-select\" multiple=\"multiple\" size=\"2\" >";
+ $o .= "<select name=\"marital\" id=\"marital-select\" size=\"1\" >";
foreach($select as $selection) {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";