Use GBP details when currency is GBP, without checking country
This commit is contained in:
parent
7d101cb02d
commit
dc1ffffbb4
|
@ -572,7 +572,7 @@ class Agora(object):
|
||||||
|
|
||||||
# Substitute the currency
|
# Substitute the currency
|
||||||
ad = ad.replace("$CURRENCY$", currency)
|
ad = ad.replace("$CURRENCY$", currency)
|
||||||
if countrycode == "GB" and currency == "GBP":
|
if currency == "GBP":
|
||||||
ad = ad.replace("$PAYMENT$", settings.Agora.GBPDetailsAd)
|
ad = ad.replace("$PAYMENT$", settings.Agora.GBPDetailsAd)
|
||||||
paymentdetailstext = paymentdetails.replace("$PAYMENT$", settings.Agora.GBPDetailsPayment)
|
paymentdetailstext = paymentdetails.replace("$PAYMENT$", settings.Agora.GBPDetailsPayment)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue