no use for double quotes here

This commit is contained in:
Michiel de Jong 2012-05-17 21:03:06 +02:00
parent f998ed331a
commit 2cc0515161
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ $hostMetaHeader = array(
'Content-Type' => 'application/xrd+json'
);
$serverName = $_SERVER['SERVER_NAME'];
$hostMetaContents = "{\"links\":[{\"rel\":\"lrdd\",\"template\":\"http'.(isset($_SERVER['HTTPS'])?'s':'').'://'.$serverName.'/public.php?service=webfinger&q={uri}\"}]}";
$hostMetaContents = '{"links":[{"rel":"lrdd","template":"http'.(isset($_SERVER['HTTPS'])?'s':'').'://'.$serverName.'/public.php?service=webfinger&q={uri}"}]}';
foreach($hostMetaHeader as $header => $value) {
header($header . ": " . $value);
}