From 107cfc31aea8704a1001ff3e6bae08eed1748bf0 Mon Sep 17 00:00:00 2001 From: shlurbee Date: Thu, 15 Nov 2012 16:12:04 -0800 Subject: [PATCH] Allow sponsors to override min bid --- r2/r2/controllers/promotecontroller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/controllers/promotecontroller.py b/r2/r2/controllers/promotecontroller.py index e50c466fc..90ae980cc 100644 --- a/r2/r2/controllers/promotecontroller.py +++ b/r2/r2/controllers/promotecontroller.py @@ -394,7 +394,7 @@ class PromoteController(ListingController): # minimum bid depends on user privilege and targeting, checked here # instead of in the validator b/c current duration is needed - if c.user_is_admin: + if c.user_is_sponsor: min_daily_bid = 0 elif targeting == 'one': min_daily_bid = g.min_promote_bid * 1.5