Skip to content
Snippets Groups Projects
Commit 0edce179 authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Merge branch 'sharing' of git://anongit.kde.org/owncloud into sharing

parents 582dca4d 42ed3c6b
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ class OC_Share {
}
} else if (isset($uid)) {
// TODO Check if this is necessary, only constructor needs it as IN. It would be better for other queries to just return =$uid
$in = "'".$uid."'";
$in .= "'".$uid."'";
$groups = OC_Group::getUserGroups($uid);
foreach ($groups as $group) {
$in .= ", '".$uid."@".$group."'";
......
......@@ -27,7 +27,7 @@ $(document).ready(function() {
});
// Sets the file link behaviour :
$('td.filename.name a').live('click',function(event) {
$('td.filename a').live('click',function(event) {
event.preventDefault();
var filename=$(this).parent().parent().data('file');
if(!FileList.isLoading(filename)){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment