aboutsummaryrefslogtreecommitdiffstats
path: root/include/profile_selectors.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-29 22:34:05 -0700
committerfriendica <info@friendica.com>2012-04-29 22:34:05 -0700
commit928faf3b9712e88e030b2ccbbc630e3991e03d03 (patch)
treeaa1b56c5133653b2828cc2c904ab647b66b0f654 /include/profile_selectors.php
parentae2aa744449f0e7161c5fae81773ae5defd3ad76 (diff)
downloadvolse-hubzilla-928faf3b9712e88e030b2ccbbc630e3991e03d03.tar.gz
volse-hubzilla-928faf3b9712e88e030b2ccbbc630e3991e03d03.tar.bz2
volse-hubzilla-928faf3b9712e88e030b2ccbbc630e3991e03d03.zip
typo in profile_selectors, fix remote tagging
Diffstat (limited to 'include/profile_selectors.php')
-rw-r--r--include/profile_selectors.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/profile_selectors.php b/include/profile_selectors.php
index d2f677e32..4700bb96f 100644
--- a/include/profile_selectors.php
+++ b/include/profile_selectors.php
@@ -7,7 +7,7 @@ function gender_selector($current="",$suffix="") {
$o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
- if($selection !== 'NOTRANSLATION')) {
+ if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
}
@@ -22,7 +22,7 @@ function sexpref_selector($current="",$suffix="") {
$o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
foreach($select as $selection) {
- if($selection !== 'NOTRANSLATION')) {
+ if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
}
@@ -38,7 +38,7 @@ function marital_selector($current="",$suffix="") {
$o .= "<select name=\"marital\" id=\"marital-select\" size=\"1\" >";
foreach($select as $selection) {
- if($selection !== 'NOTRANSLATION')) {
+ if($selection !== 'NOTRANSLATION') {
$selected = (($selection == $current) ? ' selected="selected" ' : '');
$o .= "<option value=\"$selection\" $selected >$selection</option>";
}