Compare commits

..

No commits in common. "a33bf214757658106eb9ea358740751017cbf8f3" and "4f3395b2c76ca195b2b885ebb870ec04b702b3fc" have entirely different histories.

2 changed files with 18 additions and 20 deletions

View File

@ -1,19 +1,19 @@
{ {
"short_name": "JAJ Comics", "short_name": "JAJ Comics",
"description": "JAJ Comics: So many comics, so little time!", "description": "JAJ Comics: So many comics, so little time!",
"icons": [ "icons": [
{ {
"src": "img/comics_512.png", "src": "img/comics_512.png",
"type": "image/png", "type": "image/png",
"sizes": "512x512" "sizes": "512x512"
}, },
{ {
"src": "img/comics_192.png", "src": "img/comics_192.png",
"type": "image/png", "type": "image/png",
"sizes": "192x192" "sizes": "192x192"
} }
], ],
"start_url": "index.php", "start_url": "index.php",
"display": "fullscreen", "display": "fullscreen",
"scope": "/comics/" "scope": "/comics/"
} }

View File

@ -4,9 +4,7 @@ require 'header.php';
require_login(); require_login();
$data = array(); $data = array();
$data["session"] = $_SESSION;
$data["server"] = $_SERVER;
header('Content-Type: application/json'); header('Content-Type: application/json');
echo json_encode($data); echo json_encode($_SESSION);
exit(); exit();