From b16be9e76a9288f0b6803dbaa989a7bdee70d49d Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Thu, 19 Aug 2010 05:29:43 -0700 Subject: [PATCH] marital "heart" status no longer an array --- mod/profiles.php | 2 +- view/profile_selectors.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/profiles.php b/mod/profiles.php index 71e037718e..853aac6de8 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -53,7 +53,7 @@ function profiles_post(&$a) { $postal_code = notags(trim($_POST['postal_code'])); $country_name = notags(trim($_POST['country_name'])); - $marital = notags(trim(implode(', ',$_POST['marital']))); + $marital = notags(trim($_POST['marital'])); if($marital != $orig[0]['marital']) $maritalchanged = true; diff --git a/view/profile_selectors.php b/view/profile_selectors.php index 03dd2aacd2..46f5c8b68a 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 .= ""; foreach($select as $selection) { $selected = (($selection == $current) ? ' selected="selected" ' : ''); $o .= "";