]> source.dussan.org Git - nextcloud-server.git/commitdiff
Check if a private link points to a folder or file and change text accordingly
authorMichael Gapczynski <GapczynskiM@gmail.com>
Tue, 15 May 2012 00:21:07 +0000 (20:21 -0400)
committerMichael Gapczynski <GapczynskiM@gmail.com>
Tue, 15 May 2012 00:21:31 +0000 (20:21 -0400)
apps/files_sharing/ajax/email.php

index 823462b9921fc8f783ac8e0d58f4c788f81818ae..163683cd0e3c3bc3624df039983d30dbaffa6659 100644 (file)
@@ -3,9 +3,10 @@ OCP\JSON::checkLoggedIn();
 OCP\JSON::checkAppEnabled('files_sharing');
 $user = OCP\USER::getUser();
 // TODO translations
-$subject = $user.' shared a file with you';
+$type = (strpos($_POST['file'], '.') === false) ? 'folder' : 'file';
+$subject = $user.' shared a '.$type.' with you';
 $link = $_POST['link'];
-$text = $user.' shared the file '.$_POST['file'].' with you. It is available for download here: '.$link;
+$text = $user.' shared the '.$type.' '.$_POST['file'].' with you. It is available for download here: '.$link;
 $fromaddress = OCP\Config::getUserValue($user, 'settings', 'email', 'sharing-noreply@'.$_SERVER['HTTP_HOST']);
 OC_Mail::send($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user);