-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Description
Steps to reproduce
- Create two usergroups G1 and G2
- Share a folder F with both groups
- Create a user U belonging to both groups G1 and G2
- Log in with U
Expected behaviour
User U will have folder F in his files.
Actual behaviour
User U has folder F two times in his files (one is named "F (2)").
Server configuration
Operating system: Debian 8.0
Web server: Apache 2.0
Database: MySQL
PHP version: 5.6.20
ownCloud version: 9.0.2
Updated from an older ownCloud or fresh install: fresh install
Where did you install ownCloud from: via official aptitude repo
Signing status (ownCloud 9.0 and above): No errors have been found.
List of activated apps:
- activity: 2.2.1
- activitydefaults: 0.1.0
- comments: 0.2
- dav: 0.1.6
- direct_menu: 0.7.1
- external: 1.2
- federatedfilesharing: 0.1.0
- federation: 0.0.4
- files: 1.4.4
- files_pdfviewer: 0.8.1
- files_sharing: 0.9.1
- files_texteditor: 2.1
- files_trashbin: 0.8.0
- files_versions: 1.2.0
- files_videoplayer: 0.9.8
- firstrunwizard: 1.1
- gallery: 14.5.0
- notifications: 0.2.3
- ownbackup: 0.3.8
- provisioning_api: 0.4.1
- systemtags: 0.2
- templateeditor: 0.1
- updatenotification: 0.1.0
The content of config/config.php:
<?php
$CONFIG = array (
'updatechecker' => false,
'instanceid' => 'qwerty',
'passwordsalt' => '0815',
'secret' => 'thisissecret',
'trusted_domains' =>
array (
0 => 'www.xxx.de',
1 => 'xxx.de',
),
'datadirectory' => '/var/www/vhosts/xxx.de/httpdocs/data',
'overwrite.cli.url' => 'https://www.xxx.de',
'dbtype' => 'mysql',
'version' => '9.0.2.2',
'dbname' => 'owncloud',
'dbhost' => 'localhost',
'dbtableprefix' => 'oc_',
'dbuser' => 'owncloud',
'dbpassword' => 'dbpass',
'logtimezone' => 'UTC',
'installed' => true,
'memcache.local' => '\\OC\\Memcache\\APCu',
'mail_from_address' => 'info',
'mail_smtpmode' => 'php',
'mail_domain' => 'xxx.de',
'theme' => 'mytheme',
);
Are you using external storage, if yes which one: no
Are you using encryption: no
Are you using an external user-backend, if yes which one: no
Trefex