Split doc for $wgHKDFSecret/$wgHKDFAlgorithm in DefaultSettings.php
authorumherirrender <umherirrender_de.wp@web.de>
Fri, 31 Oct 2014 10:54:44 +0000 (11:54 +0100)
committerumherirrender <umherirrender_de.wp@web.de>
Fri, 31 Oct 2014 10:54:44 +0000 (11:54 +0100)
Each variable should have it own doc block.

Change-Id: Ided1073fddc17e80ddbc556c5f88c422d77cf120

includes/DefaultSettings.php

index cfc8438..29d653d 100644 (file)
@@ -7297,13 +7297,21 @@ $wgPagePropsHaveSortkey = true;
 $wgHttpsPort = 443;
 
 /**
- * Secret and algorithm for hmac-based key derivation function (fast,
+ * Secret for hmac-based key derivation function (fast,
  * cryptographically secure random numbers).
  * This should be set in LocalSettings.php, otherwise wgSecretKey will
  * be used.
+ * See also: $wgHKDFAlgorithm
  * @since 1.24
  */
 $wgHKDFSecret = false;
+
+/**
+ * Algorithm for hmac-based key derivation function (fast,
+ * cryptographically secure random numbers).
+ * See also: $wgHKDFSecret
+ * @since 1.24
+ */
 $wgHKDFAlgorithm = 'sha256';
 
 /**