From 71cd57927fd7670f9e6d99bc2c11c40b1fa6c802 Mon Sep 17 00:00:00 2001 From: Nils Vogels Date: Thu, 1 May 2014 14:09:12 +0200 Subject: [PATCH] Changing sorting order for email notification lists to alphabetical, ascending --- sickbeard/webserve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/webserve.py b/sickbeard/webserve.py index fd9d842c..3d7ec22e 100644 --- a/sickbeard/webserve.py +++ b/sickbeard/webserve.py @@ -2624,7 +2624,7 @@ class Home: cherrypy.response.headers['Cache-Control'] = "max-age=0,no-cache,no-store" mydb = db.DBConnection() - rows = mydb.select("SELECT show_id, show_name, notify_list FROM tv_shows") + rows = mydb.select("SELECT show_id, show_name, notify_list FROM tv_shows ORDER BY show_name ASC") data = {} size = 0 for r in rows: