We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a0b0fc commit 9a223a2Copy full SHA for 9a223a2
insta/index.php
@@ -1,5 +1,5 @@
1
<?php
2
-
+@define("STDERR", fopen("php://stderr", "wt"));
3
session_start();
4
if(!isset($_SESSION["access_token"])){
5
$_SESSION["state"] = $state = bin2hex(openssl_random_pseudo_bytes(8));
@@ -128,7 +128,8 @@ function reloadMe(){
128
foreach($ret as $gist){
129
$files = $gist["files"];
130
if(isset($files["plugin.yml"])){
131
- $manifest = yaml_parse_url($files["plugin.yml"]["raw_url"]);
+ $yamlCont = urlGet($files["plugin.yml"]["raw_url"]);
132
+ $manifest = yaml_parse($yamlCont);
133
$langs = [];
134
foreach($files as $file){
135
if(!isset($langs[$file["language"]])){
0 commit comments