From cd52ca80abd24fb9b355264f88fd48893b2bd6b5 Mon Sep 17 00:00:00 2001 From: wn_ Date: Wed, 17 Mar 2021 16:34:52 +0000 Subject: [PATCH] Minor cleanup in 'Handler_Public->getProfiles' --- classes/handler/public.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/classes/handler/public.php b/classes/handler/public.php index f9d118999..98042111b 100755 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -268,16 +268,16 @@ class Handler_Public extends Handler { if ($login) { $profiles = ORM::for_table('ttrss_settings_profiles') ->table_alias('p') - ->select_many('title' , ['profile_id' => 'p.id']) - ->join('ttrss_users', ['p.owner_uid', '=', 'u.id'], 'u') - ->where_raw('LOWER(u.login) = LOWER(?)', [$login]) + ->select_many('title' , 'p.id') + ->join('ttrss_users', ['owner_uid', '=', 'u.id'], 'u') + ->where_raw('LOWER(login) = LOWER(?)', [$login]) ->order_by_asc('title') ->find_many(); $rv = [ [ "value" => 0, "label" => __("Default profile") ] ]; foreach ($profiles as $profile) { - array_push($rv, [ "label" => $profile->title, "value" => $profile->profile_id ]); + array_push($rv, [ "label" => $profile->title, "value" => $profile->id ]); } }