mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Turning off sslv3 for paypal.
This commit is contained in:
parent
b7ea2e222a
commit
0478ef0f1b
2 changed files with 2 additions and 1 deletions
|
@ -322,6 +322,7 @@ class Profile(models.Model):
|
|||
'API_USERNAME': settings.PAYPAL_API_USERNAME,
|
||||
'API_PASSWORD': settings.PAYPAL_API_PASSWORD,
|
||||
'API_SIGNATURE': settings.PAYPAL_API_SIGNATURE,
|
||||
'API_CA_CERTS': False,
|
||||
}
|
||||
paypal = PayPalInterface(**paypal_opts)
|
||||
transactions = PayPalIPN.objects.filter(custom=self.user.username,
|
||||
|
@ -362,6 +363,7 @@ class Profile(models.Model):
|
|||
'API_USERNAME': settings.PAYPAL_API_USERNAME,
|
||||
'API_PASSWORD': settings.PAYPAL_API_PASSWORD,
|
||||
'API_SIGNATURE': settings.PAYPAL_API_SIGNATURE,
|
||||
'API_CA_CERTS': False,
|
||||
}
|
||||
paypal = PayPalInterface(**paypal_opts)
|
||||
transaction = transactions[0]
|
||||
|
|
|
@ -79,7 +79,6 @@ ALLOWED_HOSTS = ['*']
|
|||
AUTO_PREMIUM_NEW_USERS = False
|
||||
AUTO_ENABLE_NEW_USERS = True
|
||||
PAYPAL_TEST = False
|
||||
API_CA_CERTS = False
|
||||
|
||||
# ===============
|
||||
# = Enviornment =
|
||||
|
|
Loading…
Add table
Reference in a new issue