changeset 85:271cf05a8648

personal_www_list_web doesn't make sense any more.
author casties
date Tue, 14 May 2013 10:36:48 +0200
parents faaded775a8a
children ab836d3f96dc
files MPIWGStaff.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/MPIWGStaff.py	Mon May 13 22:16:04 2013 +0200
+++ b/MPIWGStaff.py	Tue May 14 10:36:48 2013 +0200
@@ -1141,9 +1141,9 @@
     def getLastArrivals(self,limit=None):
         """getlast arrivals"""
         if not limit:
-            selectStr="select * from personal_www_list_web where publish_the_data = 'yes' and is_scholar='yes' and date_from < CURRENT_DATE order by date_from DESC"
+            selectStr="select * from personal_www_list where publish_the_data = 'yes' and is_scholar='yes' and date_from < CURRENT_DATE order by date_from DESC"
         else:
-            selectStr="select * from personal_www_list_web where publish_the_data = 'yes' and is_scholar='yes' and date_from < CURRENT_DATE order by date_from DESC limit %s"%limit  
+            selectStr="select * from personal_www_list where publish_the_data = 'yes' and is_scholar='yes' and date_from < CURRENT_DATE order by date_from DESC limit %s"%limit  
         
         res=self.members.executeZSQL(selectStr)