]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/ContactSelector.php
Add 'storage' console command
[friendica.git] / src / Content / ContactSelector.php
index f9bf6d37106e37d02ae97bf8dc2d8b516bdb66ed..6a5ee9112b8ad179246a31c4230284619fc1d8b7 100644 (file)
@@ -168,7 +168,7 @@ class ContactSelector
                $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
                foreach ($select as $neutral => $selection) {
                        if ($selection !== 'NOTRANSLATION') {
-                               $selected = (($selection == $current) ? ' selected="selected" ' : '');
+                               $selected = (($neutral == $current) ? ' selected="selected" ' : '');
                                $o .= "<option value=\"$neutral\" $selected >$selection</option>";
                        }
                }
@@ -205,7 +205,7 @@ class ContactSelector
                $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
                foreach ($select as $neutral => $selection) {
                        if ($selection !== 'NOTRANSLATION') {
-                               $selected = (($selection == $current) ? ' selected="selected" ' : '');
+                               $selected = (($neutral == $current) ? ' selected="selected" ' : '');
                                $o .= "<option value=\"$neutral\" $selected >$selection</option>";
                        }
                }
@@ -219,38 +219,39 @@ class ContactSelector
        public static function maritalStatus($current = "")
        {
                $o = '';
-                       'EMPTY' => '',
-                       'Single' => L10n::t('Single'),
-                       'Lonely' => L10n::t('Lonely'),
-                       'Available' => L10n::t('Available'),
-                       'Unavailable' => L10n::t('Unavailable'),
-                       'Has crush' => L10n::t('Has crush'),
-                       'Infatuated' => L10n::t('Infatuated'),
-                       'Dating' => L10n::t('Dating'),
-                       'Unfaithful' => L10n::t('Unfaithful'),
-                       'Sex Addict' => L10n::t('Sex Addict'),
-                       'Friends' => L10n::t('Friends'),
-                       'Friends/Benefits' => L10n::t('Friends/Benefits'),
-                       'Casual' => L10n::t('Casual'),
-                       'Engaged' => L10n::t('Engaged'),
-                       'Married' => L10n::t('Married'),
-                       'Imaginarily married' => L10n::t('Imaginarily married'),
-                       'Partners' => L10n::t('Partners'),
-                       'Cohabiting' => L10n::t('Cohabiting'),
-                       'Common law' => L10n::t('Common law'),
-                       'Happy' => L10n::t('Happy'),
-                       'Not looking' => L10n::t('Not looking'),
-                       'Swinger' => L10n::t('Swinger'),
-                       'Betrayed' => L10n::t('Betrayed'),
-                       'Separated' => L10n::t('Separated'),
-                       'Unstable' => L10n::t('Unstable'),
-                       'Divorced' => L10n::t('Divorced'),
+               $select = [
+                       'EMPTY'                => '',
+                       'Single'               => L10n::t('Single'),
+                       'Lonely'               => L10n::t('Lonely'),
+                       'Available'            => L10n::t('Available'),
+                       'Unavailable'          => L10n::t('Unavailable'),
+                       'Has crush'            => L10n::t('Has crush'),
+                       'Infatuated'           => L10n::t('Infatuated'),
+                       'Dating'               => L10n::t('Dating'),
+                       'Unfaithful'           => L10n::t('Unfaithful'),
+                       'Sex Addict'           => L10n::t('Sex Addict'),
+                       'Friends'              => L10n::t('Friends'),
+                       'Friends/Benefits'     => L10n::t('Friends/Benefits'),
+                       'Casual'               => L10n::t('Casual'),
+                       'Engaged'              => L10n::t('Engaged'),
+                       'Married'              => L10n::t('Married'),
+                       'Imaginarily married'  => L10n::t('Imaginarily married'),
+                       'Partners'             => L10n::t('Partners'),
+                       'Cohabiting'           => L10n::t('Cohabiting'),
+                       'Common law'           => L10n::t('Common law'),
+                       'Happy'                => L10n::t('Happy'),
+                       'Not looking'          => L10n::t('Not looking'),
+                       'Swinger'              => L10n::t('Swinger'),
+                       'Betrayed'             => L10n::t('Betrayed'),
+                       'Separated'            => L10n::t('Separated'),
+                       'Unstable'             => L10n::t('Unstable'),
+                       'Divorced'             => L10n::t('Divorced'),
                        'Imaginarily divorced' => L10n::t('Imaginarily divorced'),
-                       'Widowed' => L10n::t('Widowed'),
-                       'Uncertain' => L10n::t('Uncertain'),
-                       'It\'s complicated' => L10n::t('It\'s complicated'),
-                       'Don\'t care' => L10n::t('Don\'t care'),
-                       'Ask me' => L10n::t('Ask me'),
+                       'Widowed'              => L10n::t('Widowed'),
+                       'Uncertain'            => L10n::t('Uncertain'),
+                       'It\'s complicated'    => L10n::t('It\'s complicated'),
+                       'Don\'t care'          => L10n::t('Don\'t care'),
+                       'Ask me'               => L10n::t('Ask me'),
                ];
 
                Addon::callHooks('marital_selector', $select);
@@ -258,7 +259,7 @@ class ContactSelector
                $o .= '<select name="marital" id="marital-select" size="1" >';
                foreach ($select as $neutral => $selection) {
                        if ($selection !== 'NOTRANSLATION') {
-                               $selected = (($selection == $current) ? ' selected="selected" ' : '');
+                               $selected = (($neutral == $current) ? ' selected="selected" ' : '');
                                $o .= "<option value=\"$neutral\" $selected >$selection</option>";
                        }
                }