Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/3966/head
Morris Jobke 10 years ago
parent 695a17804e
commit 0fcb37adcb
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
  1. 4
      lib/private/Config.php
  2. 2
      tests/lib/ConfigTest.php

@ -40,7 +40,7 @@ namespace OC;
*/
class Config {
const ENV_PREFIX = 'OC_';
const ENV_PREFIX = 'NC_';
/** @var array Associative array ($key => $value) */
protected $cache = array();
@ -76,7 +76,7 @@ class Config {
/**
* Returns a config value
*
* gets its value from an `OC_` prefixed environment variable
* gets its value from an `NC_` prefixed environment variable
* if it doesn't exist from config.php
* if this doesn't exist either, it will return the given `$default`
*

@ -50,7 +50,7 @@ class ConfigTest extends TestCase {
public function testGetValueReturnsEnvironmentValueIfSet() {
$this->assertEquals('bar', $this->config->getValue('foo'));
putenv('OC_foo=baz');
putenv('NC_foo=baz');
$this->assertEquals('baz', $this->config->getValue('foo'));
}

Loading…
Cancel
Save