Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-06-01 01:24:09 +0400
committerThomas Mueller <thomas.mueller@tmit.eu>2013-06-01 01:24:09 +0400
commitdd4a07321a2afa5c86fa4e42fc3e133b4ec91791 (patch)
tree3965bb22c463e5d3630719b76cc69b4b0bd19028 /lib/util.php
parent183f8c90af7d4a855d806285f30f0b26c2d087ec (diff)
fix method naming
Diffstat (limited to 'lib/util.php')
-rwxr-xr-xlib/util.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/util.php b/lib/util.php
index 40075ef7774..f1f91085154 100755
--- a/lib/util.php
+++ b/lib/util.php
@@ -640,9 +640,9 @@ class OC_Util {
/**
* Check if the ownCloud server can connect to the internet
*/
- public static function isInternetconnectionWorking() {
+ public static function isInternetConnectionWorking() {
// in case there is no internet connection on purpose return false
- if (self::isInternetconnectionEnabled() === false) {
+ if (self::isInternetConnectionEnabled() === false) {
return false;
}
@@ -669,7 +669,7 @@ class OC_Util {
/**
* Check if the connection to the internet is disabled on purpose
*/
- public static function isInternetconnectionEnabled(){
+ public static function isInternetConnectionEnabled(){
return \OC_Config::getValue("has_internet_connection", true);
}