From 594532da9a786bbb43fe7f24ee29e0668d4fcad1 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Thu, 18 Aug 2011 13:14:06 -0400 Subject: [PATCH] Merge public link icon check --- apps/files_sharing/js/share.js | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index f9500ffd000..1ae55b49937 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -12,20 +12,11 @@ $(document).ready(function() { success: function(users) { if (users.length > 0) { icon = OC.imagePath('core', 'actions/shared'); - } else { - icon = OC.imagePath('core', 'actions/share'); - } - } - }); - $.ajax({ - type: 'GET', - url: OC.linkTo('files_publiclink', 'ajax/getlink.php'), - dataType: 'json', - data: 'path='+file, - async: false, - success: function(link) { - if (link.length > 0) { - icon = OC.imagePath('core', 'actions/public'); + $.each(users, function(index, row) { + if (row.uid_shared_with == 'public') { + icon = OC.imagePath('core', 'actions/public'); + } + }); } else { icon = OC.imagePath('core', 'actions/share'); } -- 2.39.5