diff --git a/apps/federatedfilesharing/tests/Controller/RequestHandlerControllerTest.php b/apps/federatedfilesharing/tests/Controller/RequestHandlerControllerTest.php index 512000181c..aa3411ecb1 100644 --- a/apps/federatedfilesharing/tests/Controller/RequestHandlerControllerTest.php +++ b/apps/federatedfilesharing/tests/Controller/RequestHandlerControllerTest.php @@ -381,7 +381,8 @@ class RequestHandlerControllerTest extends TestCase { 'accepted' => '0', 'expiration' => null, 'password' => null, - 'mail_send' => '0' + 'mail_send' => '0', + 'share_name' => null, ]; $searchToken = $correctToken ? 'token' : 'wrongToken'; diff --git a/db_structure.xml b/db_structure.xml index d6eba8b371..583e9bb852 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -922,6 +922,14 @@ 1 + + share_name + text + + false + 64 + + item_share_type_index diff --git a/version.php b/version.php index eb6254a777..37e15f35e1 100644 --- a/version.php +++ b/version.php @@ -26,7 +26,7 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(12, 0, 0, 21); +$OC_Version = array(12, 0, 0, 22); // The human readable string $OC_VersionString = '12.0 beta 4';