]> git.mxchange.org Git - friendica.git/commitdiff
Added clarification
authorMichael <heluecht@pirati.ca>
Sun, 26 Nov 2017 11:43:02 +0000 (11:43 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 26 Nov 2017 11:43:02 +0000 (11:43 +0000)
src/Core/Config.php

index 219831ad989acd6f3d9f9a51e0f36fccb6c168db..a1ea5ae1ff19c8a4a50612bdb8bdf46793c3fc93 100644 (file)
@@ -13,13 +13,14 @@ use dba;
 
 /**
  * @brief Arbitrary sytem configuration storage
+ *
  * Note:
- * Please do not store booleans - convert to 0/1 integer values
- * The Config::get() functions return boolean false for keys that are unset,
- * and this could lead to subtle bugs.
+ * If we ever would decide to return exactly the variable type as entered,
+ * we will have fun with the additional features. :-)
+ *
+ * The config class always returns strings but in the default features
+ * we use a "false" to determine if the config value isn't set.
  *
- * There are a few places in the code (such as the admin panel) where boolean
- * configurations need to be fixed as of 10/08/2011.
  */
 class Config
 {