1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-28 01:30:11 -07:00

bugfix themes

This commit is contained in:
Daniel 2020-03-20 12:09:36 +01:00
parent 843d92c534
commit 4746b980ed

View File

@ -8,6 +8,7 @@ class ThemeRepository extends BaseRepository
{
public function findAll()
{
return $this->findBy(array(), array('name' => 'ASC'));
return $this->findBy(array(), array());
//return $this->findBy(array(), array('name' => 'ASC'));
}
}