]> git.mxchange.org Git - friendica.git/blobdiff - include/profile_selectors.php
Merge pull request #3463 from friendica/develop
[friendica.git] / include / profile_selectors.php
index ad47c0ba6c677a762506a1fef50627b9baba3c0a..8d29fd0998c608ce68a33976225c8b21130945cc 100644 (file)
@@ -9,7 +9,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>";
                }
@@ -27,7 +27,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>";
                }
@@ -45,7 +45,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>";
                }