]> source.dussan.org Git - nextcloud-server.git/commitdiff
Allow share_with column to be null for links
authorMichael Gapczynski <mtgap@owncloud.com>
Tue, 28 Aug 2012 13:51:00 +0000 (09:51 -0400)
committerMichael Gapczynski <mtgap@owncloud.com>
Tue, 28 Aug 2012 13:51:00 +0000 (09:51 -0400)
db_structure.xml
lib/util.php

index 8c96fa7c39c5a7cbe9093333467f9da473c4204e..e42dc894e8d0aa7b4f125704a581bb9060abb657 100644 (file)
     <name>share_with</name>
     <type>text</type>
     <default></default>
-    <notnull>true</notnull>
+    <notnull>false</notnull>
     <length>255</length>
    </field>
    
index 0abdddcbf9b0986e14db51959424d16f9d283356..720f2cdeefd66ed48c77a37e5ab54e38f1b5aa65 100755 (executable)
@@ -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);
        }
 
        /**