aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Enotify.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-03 16:47:05 -0700
committerzotlabs <mike@macgirvin.com>2017-11-03 16:47:05 -0700
commit9abb061e7185a29cb85ebbad04deba715e1a6a06 (patch)
tree785ed85d4cc850925110e34a97b6a19e0b71ffa9 /Zotlabs/Lib/Enotify.php
parentd450fc61c41d44c0acf60522001e7d5ebd451c46 (diff)
downloadvolse-hubzilla-9abb061e7185a29cb85ebbad04deba715e1a6a06.tar.gz
volse-hubzilla-9abb061e7185a29cb85ebbad04deba715e1a6a06.tar.bz2
volse-hubzilla-9abb061e7185a29cb85ebbad04deba715e1a6a06.zip
provide short localised summary for likes that will end up in displayed notifications
Diffstat (limited to 'Zotlabs/Lib/Enotify.php')
-rw-r--r--Zotlabs/Lib/Enotify.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php
index e82c11a35..d5798e671 100644
--- a/Zotlabs/Lib/Enotify.php
+++ b/Zotlabs/Lib/Enotify.php
@@ -778,10 +778,14 @@ class Enotify {
// Call localize_item to get a one line status for activities.
// This should set $item['localized'] to indicate we have a brief summary.
+ // and perhaps $item['shortlocalized'] for an even briefer summary
localize_item($item);
- if($item['localize']) {
+ if($item['shortlocalize']) {
+ $itemem_text = $item['shortlocalize'];
+ }
+ elseif($item['localize']) {
$itemem_text = $item['localize'];
}
else {