Changed image->get_tag_array to sort the array before returning

This commit is contained in:
Matthew Barbour 2021-01-12 19:39:05 -06:00
parent 76d8416324
commit 4f82dce662

View file

@ -483,6 +483,7 @@ class Image
WHERE image_id=:id
ORDER BY tag
", ["id"=>$this->id]);
sort($this->tag_array);
}
return $this->tag_array;
}