]> git.mxchange.org Git - friendica.git/blobdiff - src/Repository/ProfileField.php
Merge pull request #10160 from annando/issue-10156
[friendica.git] / src / Repository / ProfileField.php
index b1b16dcf1fb13de9e391cad49f825814a6da3a39..bf7ac69d6131f28ed101c33dcd4d042dc2156805 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Repository;
 
@@ -68,17 +87,17 @@ class ProfileField extends BaseRepository
        }
 
        /**
-        * @param array $condition
-        * @param array $params
+        * @param array    $condition
+        * @param array    $params
+        * @param int|null $min_id
         * @param int|null $max_id
-        * @param int|null $since_id
-        * @param int $limit
+        * @param int      $limit
         * @return Collection\ProfileFields
         * @throws \Exception
         */
-       public function selectByBoundaries(array $condition = [], array $params = [], int $max_id = null, int $since_id = null, int $limit = self::LIMIT)
+       public function selectByBoundaries(array $condition = [], array $params = [], int $min_id = null, int $max_id = null, int $limit = self::LIMIT)
        {
-               return parent::selectByBoundaries($condition, $params, $max_id, $since_id, $limit);
+               return parent::selectByBoundaries($condition, $params, $min_id, $max_id, $limit);
        }
 
        /**
@@ -254,7 +273,6 @@ class ProfileField extends BaseRepository
 
                $custom_fields = [
                        'hometown'  => $this->l10n->t('Hometown:'),
-                       'gender'    => $this->l10n->t('Gender:'),
                        'marital'   => $this->l10n->t('Marital Status:'),
                        'with'      => $this->l10n->t('With:'),
                        'howlong'   => $this->l10n->t('Since:'),
@@ -263,7 +281,7 @@ class ProfileField extends BaseRepository
                        'religion'  => $this->l10n->t('Religious Views:'),
                        'likes'     => $this->l10n->t('Likes:'),
                        'dislikes'  => $this->l10n->t('Dislikes:'),
-                       'about'     => $this->l10n->t('About:'),
+                       'pdesc'     => $this->l10n->t('Title/Description:'),
                        'summary'   => $this->l10n->t('Summary'),
                        'music'     => $this->l10n->t('Musical interests'),
                        'book'      => $this->l10n->t('Books, literature'),