From f4fb6356cd5d9143f59ad41425d74fb35bbe68fd Mon Sep 17 00:00:00 2001
From: "Michiel@unhosted" <michiel@unhosted.org>
Date: Sun, 9 Oct 2011 17:12:16 +0200
Subject: [PATCH] use install.php properly

---
 apps/remoteStorage/compat.php           |  2 +-
 apps/user_webfinger/activate.php        | 11 -----------
 apps/user_webfinger/appinfo/install.php |  5 +++++
 3 files changed, 6 insertions(+), 12 deletions(-)
 delete mode 100644 apps/user_webfinger/activate.php
 create mode 100644 apps/user_webfinger/appinfo/install.php

diff --git a/apps/remoteStorage/compat.php b/apps/remoteStorage/compat.php
index d383e87951..35a133c43c 100644
--- a/apps/remoteStorage/compat.php
+++ b/apps/remoteStorage/compat.php
@@ -44,7 +44,7 @@ if(isset($_SERVER['HTTP_ORIGIN'])) {
 	header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']);
 	header('Access-Control-Max-Age: 3600');
 	header('Access-Control-Allow-Methods: OPTIONS, GET, PUT, DELETE, PROPFIND');
-  	header('Access-Control-Allow-Headers: Authorization');
+  	header('Access-Control-Allow-Headers: Authorization, Content-Type');
 } else {
 	header('Access-Control-Allow-Origin: *');
 }
diff --git a/apps/user_webfinger/activate.php b/apps/user_webfinger/activate.php
deleted file mode 100644
index 50257232ae..0000000000
--- a/apps/user_webfinger/activate.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-$ownCloudBaseUri = substr($_SERVER['REQUEST_URI'],0, -(strlen('/apps/user_webfinger/activate.php')));
-$thisAppDir = __DIR__;
-$appsDir = dirname($thisAppDir);
-$ownCloudDir = dirname($appsDir);
-try{
-	symlink($thisAppDir, $ownCloudDir.'/.well-known');
-	echo "Webfinger should now work.\n";
-} catch(Exception $e) {
-	echo "Please create a file called '.well-known in the ownCloud root, give the web server user permission to change it, and retry.\n";
-}
diff --git a/apps/user_webfinger/appinfo/install.php b/apps/user_webfinger/appinfo/install.php
new file mode 100644
index 0000000000..d23ba53539
--- /dev/null
+++ b/apps/user_webfinger/appinfo/install.php
@@ -0,0 +1,5 @@
+<?php
+$thisAppDir = __DIR__;
+$appsDir = dirname($thisAppDir);
+$ownCloudDir = dirname($appsDir);
+symlink($thisAppDir, $ownCloudDir.'/.well-known');
-- 
GitLab