merged pull 27, thanks Niphlod

This commit is contained in:
Massimo
2013-09-09 17:08:16 -05:00
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -185,7 +185,8 @@ class MockQuery(object):
if self.with_lock:
acquire_lock(self.db, key + ':lock', self.value)
rtn = self.db.hgetall(key)
rtn['update_record'] = self.update # update record support
if rtn:
rtn['update_record'] = self.update # update record support
return [Storage(rtn)] if rtn else []
elif self.op == 'ge' and self.field == 'id' and self.value == 0:
#means that someone wants the complete list
+1 -1
View File
@@ -915,7 +915,7 @@ class Session(Storage):
return
(record_id, sep, unique_key) = response.session_id.partition(':')
if record_id.isdigit() and long(record_id):
if record_id.isdigit() and long(record_id)>0:
new_unique_key = web2py_uuid()
row = table(record_id)
if row and row.unique_key==unique_key: