X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FRepository%2FProfileField.php;h=bf7ac69d6131f28ed101c33dcd4d042dc2156805;hb=5a8f2021584ed86489b056037ca1ed673f26270f;hp=b1b16dcf1fb13de9e391cad49f825814a6da3a39;hpb=451596f5b301df5fbded305fb1c870db0fec3bea;p=friendica.git diff --git a/src/Repository/ProfileField.php b/src/Repository/ProfileField.php index b1b16dcf1f..bf7ac69d61 100644 --- a/src/Repository/ProfileField.php +++ b/src/Repository/ProfileField.php @@ -1,4 +1,23 @@ . + * + */ 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'),