Updated readme (moved further setup to wiki).

Change-Id: Ib78acf9437dceae43bd72d52cbab48e7837ca156
diff --git a/core/Changes b/core/Changes
index 17ae3a2..f1cb067 100644
--- a/core/Changes
+++ b/core/Changes
@@ -1,7 +1,8 @@
 version 0.60
-01/03/2018
+13/03/2018
 	- removed old policy and deprecated code (margaretha)
 	- moved authentication related code to /full (margaretha)
+	- elaborated default layer names in the configuration file. (margaretha)
 
 version 0.59.10 
 20/02/2018
diff --git a/core/src/main/java/de/ids_mannheim/korap/config/KustvaktConfiguration.java b/core/src/main/java/de/ids_mannheim/korap/config/KustvaktConfiguration.java
index 260dcda..563e493 100644
--- a/core/src/main/java/de/ids_mannheim/korap/config/KustvaktConfiguration.java
+++ b/core/src/main/java/de/ids_mannheim/korap/config/KustvaktConfiguration.java
@@ -121,11 +121,11 @@
         issuer = new URL(is);
 
         default_const = properties
-                .getProperty("default.layer.c", "mate");
-        default_dep = properties.getProperty("default.layer.d", "mate");
-        default_lemma = properties.getProperty("default.layer.l", "tt");
-        default_pos = properties.getProperty("default.layer.p", "tt");
-        default_token = properties.getProperty("default.layer.o",
+                .getProperty("default.layer.constituent", "mate");
+        default_dep = properties.getProperty("default.layer.dependency", "mate");
+        default_lemma = properties.getProperty("default.layer.lemma", "tt");
+        default_pos = properties.getProperty("default.layer.partOfSpeech", "tt");
+        default_token = properties.getProperty("default.layer.orthography",
                 "opennlp");
 
         // security configuration
@@ -158,8 +158,8 @@
         shortTokenTTL = TimeUtils.convertTimeToSeconds(properties.getProperty(
                 "security.shortTokenTTL", "3H"));
 
-        passcodeSaltField = properties.getProperty("security.passcode.salt",
-                "accountCreation");
+//        passcodeSaltField = properties.getProperty("security.passcode.salt",
+//                "accountCreation");
         
     }