fix(plg): missing comma in php

This commit is contained in:
Zack Spear
2020-06-23 19:03:40 -07:00
parent 260973b762
commit 35467fa2b5

View File

@@ -1037,7 +1037,7 @@ if (!window.Vue) {
"flashvendor" => $var['flashVendor'],
"guid" => $var['flashGUID'],
"internalport" => $_SERVER['SERVER_PORT'],
"keyfile" => str_replace(['+','/','='], ['-','_',''], trim(base64_encode(@file_get_contents($var['regFILE']))))
"keyfile" => str_replace(['+','/','='], ['-','_',''], trim(base64_encode(@file_get_contents($var['regFILE'])))),
"protocol" => $_SERVER['REQUEST_SCHEME'],
"reggen" => (int)$var['regGen'],
"registered" => empty($remote['apikey']) || empty($var['regFILE']) ? 0 : 1,