From: Christopher Allan Webber Date: Thu, 7 Jul 2011 13:22:12 +0000 (-0500) Subject: This should actually fix the next and previous buttons now. Sorry I borked the merge! X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e6fd112d429d1fcc5994ff19c61bd67367a33ce5;p=mediagoblin.git This should actually fix the next and previous buttons now. Sorry I borked the merge! --- diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 2b7933a4..279cb9f2 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -147,7 +147,7 @@ class MediaEntry(Document): """ Provide a url to the previous entry from this user, if there is one """ - cursor = self.db.MediaEntry.find({'_id' : {"$lt": self['_id']}, + cursor = self.db.MediaEntry.find({'_id' : {"$gt": self['_id']}, 'uploader': self['uploader'], 'state': 'processed'}).sort( '_id', ASCENDING).limit(1) @@ -160,7 +160,7 @@ class MediaEntry(Document): """ Provide a url to the next entry from this user, if there is one """ - cursor = self.db.MediaEntry.find({'_id' : {"$gt": self['_id']}, + cursor = self.db.MediaEntry.find({'_id' : {"$lt": self['_id']}, 'uploader': self['uploader'], 'state': 'processed'}).sort( '_id', DESCENDING).limit(1)