Skip to content

Commit

Permalink
Minor edit
Browse files Browse the repository at this point in the history
  • Loading branch information
MioVisman committed Feb 1, 2022
1 parent 84f61d3 commit f53530d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ public function forumsGet(int &$id): ?array
'last_post' => (int) $vars['last_post'],
'last_post_id' => (int) $vars['last_post_id'],
'last_poster' => (string) $vars['last_poster'],
'last_poster_id' => 0, // ????
'last_poster_id' => 0,
'last_topic' => (string) $vars['last_topic'],
'sort_by' => (int) $vars['sort_by'],
'disp_position' => (int) $vars['disp_position'],
Expand Down Expand Up @@ -890,14 +890,14 @@ public function topicsGet(int &$id): ?array
return [
'id_old' => $id,
'poster' => (string) $vars['poster'],
'poster_id' => 0, // ????
'poster_id' => 0,
'subject' => (string) $vars['subject'],
'posted' => (int) $vars['posted'],
'first_post_id' => (int) $vars['first_post_id'],
'last_post' => (int) $vars['last_post'],
'last_post_id' => (int) $vars['last_post_id'],
'last_poster' => (string) $vars['last_poster'],
'last_poster_id' => 0, // ?????
'last_poster_id' => 0,
'num_views' => (int) $vars['num_views'],
'num_replies' => (int) $vars['num_replies'],
'closed' => (int) $vars['closed'],
Expand Down

0 comments on commit f53530d

Please sign in to comment.