diff options
author | Robin <robin@Amaya.(none)> | 2010-04-24 12:40:20 +0200 |
---|---|---|
committer | Robin <robin@Amaya.(none)> | 2010-04-24 12:40:20 +0200 |
commit | d9e0d5decad7c52d2e78606d7be7570e675b0dbb (patch) | |
tree | 33c6aedb8545f5638c0c95d9611965d62c82738c /inc/lib_config.php | |
parent | 9be88c0080263b3ac4106b277520705415d74e3f (diff) | |
download | nextcloud-server-d9e0d5decad7c52d2e78606d7be7570e675b0dbb.tar.gz nextcloud-server-d9e0d5decad7c52d2e78606d7be7570e675b0dbb.zip |
remove dependency on set_include_path because not all hosts support it
Diffstat (limited to 'inc/lib_config.php')
-rwxr-xr-x | inc/lib_config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/lib_config.php b/inc/lib_config.php index 70de1b96d7e..130731b79f9 100755 --- a/inc/lib_config.php +++ b/inc/lib_config.php @@ -11,7 +11,7 @@ class OC_CONFIG{ global $CONFIG_HTTPFORCESSL; global $CONFIG_DATEFORMAT; global $CONFIG_DBNAME; - require('templates/configform.php'); + oc_require('templates/configform.php'); } /** @@ -35,7 +35,7 @@ class OC_CONFIG{ } } if($allow){ - require('templates/adminform.php'); + oc_require('templates/adminform.php'); } } |