Tabs instead of spaces (#416)

* Tabs instead of spaces
This commit is contained in:
Evil Puncker
2020-06-02 12:50:52 -03:00
committed by GitHub
parent 5a80034915
commit 0fae6d6e5f
20 changed files with 786 additions and 787 deletions

View File

@@ -14,10 +14,10 @@ if(!function_exists('curl_version')):
// CURL enabled. Lets create an API web request to github.
$request = curl_init();
curl_setopt($request, CURLOPT_URL, 'https://api.github.com/repos/Znote/ZnoteAAC/contributors');
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($request, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($request, CURLOPT_USERAGENT, 'ZnoteAAC'); // GitHub requires user agent header.
curl_setopt($request, CURLOPT_SSL_VERIFYPEER, false);
// Load contributors and close the request.
$developers = json_decode(curl_exec($request), true); // Sorted by contributions.
curl_close($request);
@@ -83,4 +83,4 @@ endif;
text-align: center;
}
</style>
<?php include 'layout/overall/footer.php'; ?>
<?php include 'layout/overall/footer.php'; ?>