@@ -10,10 +10,10 @@ class Fortune extends Base
*/
public function getAll()
{
- $sth = $this->pdo->prepare('SELECT * FROM Fortune ORDER BY Fortune.message ASC');
+ $sth = $this->pdo->prepare('SELECT * FROM Fortune');
$sth->execute();
return $sth->fetchAll(\PDO::FETCH_ASSOC);
}
-
+