forked from MarseyWorld/MarseyWorld
fix roundabout way of jannies getting pin awards undone (not exploited so far AFAIK)
parent
8f6950a49b
commit
8e68f60e3d
|
@ -1207,14 +1207,17 @@ def distinguish_post(post_id, v):
|
||||||
@admin_level_required(PERMS['POST_COMMENT_MODERATION'])
|
@admin_level_required(PERMS['POST_COMMENT_MODERATION'])
|
||||||
@feature_required('PINS')
|
@feature_required('PINS')
|
||||||
def sticky_post(post_id, v):
|
def sticky_post(post_id, v):
|
||||||
|
|
||||||
|
post = get_post(post_id)
|
||||||
|
|
||||||
|
if post.stickied.endswith('(pin award)'):
|
||||||
|
abort(403, "Can't pin award pins!")
|
||||||
|
|
||||||
pins = g.db.query(Submission).filter(Submission.stickied != None, Submission.is_banned == False).count()
|
pins = g.db.query(Submission).filter(Submission.stickied != None, Submission.is_banned == False).count()
|
||||||
|
|
||||||
if pins >= PIN_LIMIT and v.admin_level < PERMS['BYPASS_PIN_LIMIT']:
|
if pins >= PIN_LIMIT and v.admin_level < PERMS['BYPASS_PIN_LIMIT']:
|
||||||
abort(403, f"Can't exceed {PIN_LIMIT} pinned posts limit!")
|
abort(403, f"Can't exceed {PIN_LIMIT} pinned posts limit!")
|
||||||
|
|
||||||
post = get_post(post_id)
|
|
||||||
|
|
||||||
if not post.stickied_utc:
|
if not post.stickied_utc:
|
||||||
post.stickied_utc = int(time.time()) + 3600
|
post.stickied_utc = int(time.time()) + 3600
|
||||||
pin_time = 'for 1 hour'
|
pin_time = 'for 1 hour'
|
||||||
|
|
Loading…
Reference in New Issue