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:
authorMichael Gapczynski <mtgap@owncloud.com>2012-08-28 17:51:00 +0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-08-28 17:51:00 +0400
commitfd2ca21fc24b6b73a6d75af2e7a7a226e5b186e9 (patch)
tree29f6a83769d4fea938c63c2cc3ac0f8618b0534c
parent42a996930481783af1a5a3fbbae18dc1201fbb0b (diff)
Allow share_with column to be null for links
-rw-r--r--db_structure.xml2
-rwxr-xr-xlib/util.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/db_structure.xml b/db_structure.xml
index 8c96fa7c39c..e42dc894e8d 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -479,7 +479,7 @@
<name>share_with</name>
<type>text</type>
<default></default>
- <notnull>true</notnull>
+ <notnull>false</notnull>
<length>255</length>
</field>
diff --git a/lib/util.php b/lib/util.php
index 0abdddcbf9b..720f2cdeefd 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. So the internal version number of ownCloud 4.5 will be 4,9,0. This is not visible to the user
- return array(4,83,4);
+ return array(4,83,5);
}
/**