Skip to content

Commit

Permalink
Merge branch 'master' into bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Aug 18, 2016
2 parents d695c41 + bf4b2a5 commit b9b7fb3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pmaweb/templates/sponsors.html
Expand Up @@ -46,12 +46,12 @@ <h3>Bronze sponsors</h3>

<div class="logos">
<a href="https://www.hostname.cl/">hostname.cl</a>
<a href="http://www.shimply.com/">Shimply</a>
<a href="http://www.dailyhosting.net/">DailyHosting.net</a>
<a href="http://www.appealslawgroup.com/">Appeals Law Group</a>
<a href="http://makeawebsitehub.com/">makeawebsitehub.com</a>
<a href="http://www.unbreakableit.com">Orlando IT Services</a>
<a href="http://bettingappstore.co.uk/">Betting App Store</a>
<a href="https://www.topbargains.com.au/">Australian Coupons</a>
</div>

<h2 id="conditions">Becoming sponsor</h2>
Expand Down
6 changes: 4 additions & 2 deletions pmaweb/templates/version/packages.json
Expand Up @@ -2,16 +2,18 @@
"packages": {
"phpmyadmin/phpmyadmin": {
{% for release in all_releases %}
{% with release.simpledownload as download %}
{% if download %}
"{{ release.version }}": {
"name": "phpmyadmin/phpmyadmin",
"version": "{{ release.version }}",
"dist": {
{% with release.simpledownload as download %}
"url": "{{ download.get_absolute_url }}",
"type": "{{ download.composer_type }}"
{% endwith %}
}
},
{% endif %}
{% endwith %}
{% endfor %}
"dev-master": {
"name": "phpmyadmin/phpmyadmin",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
Django<1.8
Django>=1.8,<1.9
python-dateutil
feedparser
django-markupfield
Expand Down
2 changes: 1 addition & 1 deletion security/models.py
Expand Up @@ -108,7 +108,7 @@ def get_cwes(self):
return self.cwe.split()

def get_commits(self):
lines = self.commits.split('\n')
lines = self.commits.strip().split('\n')
result = []
for line in lines:
if ':' in line:
Expand Down

0 comments on commit b9b7fb3

Please sign in to comment.