Skip to content

Commit

Permalink
Remove GPL license
Browse files Browse the repository at this point in the history
MIT is GPL-compatible anyway.
  • Loading branch information
jaymz authored and mathiasbynens committed Aug 22, 2013
1 parent 58e14ea commit 257ce97
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 280 deletions.
278 changes: 0 additions & 278 deletions LICENSE-GPL.txt

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ javascript:(function(){document.location='http://yourshortener.ext/shorten?url='

## License

This plugin is dual licensed under the MIT and GPL licenses. Take your pick.
This script is available under the MIT license.

## Author

Expand Down
2 changes: 1 addition & 1 deletion shorten.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}

// If the URL is already a short URL on this domain, don’t re-shorten it
if (strpos($url, SHORT_URL) == 0) {
if (strpos($url, SHORT_URL) === 0) {
die($url);
}

Expand Down

0 comments on commit 257ce97

Please sign in to comment.