summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2012-05-14 20:21:07 -0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2012-05-14 20:21:31 -0400
commita3b06e96584432d49c8627281d57635824cf30d1 (patch)
treea09a98f1b3d757b2ace0543b390694659c5975c3 /apps
parentcda9dcc7aaa701cec214122ae7127767d23af2f4 (diff)
downloadnextcloud-server-a3b06e96584432d49c8627281d57635824cf30d1.tar.gz
nextcloud-server-a3b06e96584432d49c8627281d57635824cf30d1.zip
Check if a private link points to a folder or file and change text accordingly
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/ajax/email.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php
index 823462b9921..163683cd0e3 100644
--- a/apps/files_sharing/ajax/email.php
+++ b/apps/files_sharing/ajax/email.php
@@ -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);