]> source.dussan.org Git - nextcloud-server.git/commitdiff
avoid notice in error log from user_webfinger app
authorMichiel de Jong <michiel@unhosted.org>
Wed, 22 Feb 2012 18:04:21 +0000 (18:04 +0000)
committerMichiel de Jong <michiel@unhosted.org>
Wed, 22 Feb 2012 18:04:21 +0000 (18:04 +0000)
apps/user_webfinger/host-meta.php
apps/user_webfinger/webfinger.php

index ceb15f22da4457a223056083b5f475e51f1de96e..dbb4377e8c79106d825498f35f6a44befaca2a15 100644 (file)
@@ -10,7 +10,7 @@ echo "<";
 ?xml version="1.0" encoding="UTF-8"?>
 <XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0" xmlns:hm="http://host-meta.net/xrd/1.0">
        <hm:Host xmlns="http://host-meta.net/xrd/1.0"><?php echo $_SERVER['SERVER_NAME'] ?></hm:Host>
-       <Link rel="lrdd" template="http<?php echo ($_SERVER['HTTPS']?'s':''); ?>://<?php echo $_SERVER['SERVER_NAME'] ?>/.well-known/webfinger.php?q={uri}">
+       <Link rel="lrdd" template="http<?php echo (isset($_SERVER['HTTPS'])?'s':''); ?>://<?php echo $_SERVER['SERVER_NAME'] ?>/.well-known/webfinger.php?q={uri}">
        </Link>
 </XRD>
 
index d695a833f319048633fe461d234a0298e7e738c8..a95371820160b4e993ce7373dd35ef61a4785ab0 100644 (file)
@@ -22,7 +22,7 @@ if($_GET['q']) {
 if(substr($userName, 0, 5) == 'acct:') {
        $userName = substr($userName, 5);
 }
-if($_SERVER['HTTPS']) {
+if(isset($_SERVER['HTTPS'])) {
        $baseAddress = 'https://'.$_SERVER['SERVER_NAME'].'/apps/remoteStorage/';
 } else {
        $baseAddress = 'http://'.$_SERVER['SERVER_NAME'].'/apps/remoteStorage/';