Allow all users to view a requested ad.

Previously this was only allowed for sponsors or the owner of the ad.
This commit is contained in:
Brian Simpson
2014-09-01 23:25:43 -04:00
parent 43f7c27d31
commit 5243f25f4a

View File

@@ -237,11 +237,6 @@ class ListingWithPromos(SubredditListingController):
except NotFound:
self.abort404()
if not (link.promoted and
(c.user_is_sponsor or
c.user_is_loggedin and link.author_id == c.user._id)):
self.abort403()
if not promote.is_live_on_sr(link, c.site):
self.abort403()