diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-04-08 22:41:20 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-04-08 22:41:20 +0200 |
commit | 46722d828233f1920c54e36d3225c9a667d91258 (patch) | |
tree | b1ff4822796005f87f27cb07ffea958c1de44c96 /config | |
parent | ccde0212b193a71a258f244424fa2293f08831fb (diff) | |
download | nextcloud-server-46722d828233f1920c54e36d3225c9a667d91258.tar.gz nextcloud-server-46722d828233f1920c54e36d3225c9a667d91258.zip |
fixes #2789 - no internet connectivity check if there is non on purpose
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 9b7d8e5c38d..b70b3cf533d 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -126,7 +126,10 @@ $CONFIG = array( /* Check if ownCloud is up to date */ "updatechecker" => true, -/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ +/* Are we connected to the internet or are we running in a closed network? */ +"has_internet_connection" => true, + + /* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ "log_type" => "owncloud", /* File for the owncloud logger to log to, (default is ownloud.log in the data dir */ |