# HG changeset patch # User casties # Date 1368520608 -7200 # Node ID 271cf05a864851552d6b6b6a5f1d86d7a831e963 # Parent faaded775a8aed46abb192e4ba6947b1fb9fb7a3 personal_www_list_web doesn't make sense any more. diff -r faaded775a8a -r 271cf05a8648 MPIWGStaff.py --- 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)