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:
authorArthur Schiwon <blizzz@owncloud.com>2013-07-23 15:19:39 +0400
committerArthur Schiwon <blizzz@owncloud.com>2013-07-23 15:23:59 +0400
commit6c1e68acd8fbb98f8fbd54a38860481b4971bc28 (patch)
treeb88923e798dde15560fc6fbce6c118b165303e22 /lib/util.php
parent4b203280d20241d987b43a6225f445c7685fb728 (diff)
Oracle compat: enable appconfig.configvalue to store empty strings
Diffstat (limited to 'lib/util.php')
-rwxr-xr-xlib/util.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php
index 86f3a7cac01..3920d0f900f 100755
--- a/lib/util.php
+++ b/lib/util.php
@@ -76,7 +76,7 @@ class OC_Util {
public static function getVersion() {
// hint: We only can count up. Reset minor/patchlevel when
// updating major/minor version number.
- return array(5, 00, 15);
+ return array(5, 00, 15, 1);
}
/**
@@ -824,7 +824,7 @@ class OC_Util {
$theme = OC_Config::getValue("theme", '');
if($theme === '') {
-
+
if(is_dir(OC::$SERVERROOT . '/themes/default')) {
$theme = 'default';
}