Browse Source

Fix Models\PM\Model

Leave the keys unchanged.
Visman 4 năm trước cách đây
mục cha
commit
e9f5b048a9
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      app/Models/PM/Model.php

+ 2 - 1
app/Models/PM/Model.php

@@ -442,7 +442,8 @@ class Model extends ParentModel
         $ids = \array_slice(
             $this->idsList(),
             ($this->page - 1) * $this->c->user->disp_topics,
-            $this->c->user->disp_topics
+            $this->c->user->disp_topics,
+            true
         );
 
         return $this->loadByIds(Cnst::PTOPIC, \array_keys($ids));