Skip to content

Commit

Permalink
Fixed md record sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
smeyer-ilias committed Apr 14, 2020
1 parent 9f7a174 commit deb8ea4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ private function read()
$this->setTitle($row->title);
$this->setDescription($row->description);
$this->setParentObject($row->parent_obj);
$this->setGlobalPosition((int) $row->rpos);
$this->setGlobalPosition((int) $row->gpos);
}
$query = "SELECT * FROM adv_md_record_objs " .
"WHERE record_id = " . $this->db->quote($this->getRecordId(), 'integer') . " ";
Expand Down

0 comments on commit deb8ea4

Please sign in to comment.