mirror of
https://github.com/friendica/friendica
synced 2025-04-19 05:50:10 +00:00
Fix Issue #2813
- Remove adding a notification for each admin on register approval request - Fix wrong display of the above notification that is removed anyway - Fix comments
This commit is contained in:
parent
835edf74b3
commit
aa985502c9
2 changed files with 5 additions and 23 deletions
10
js/main.js
10
js/main.js
|
@ -264,13 +264,13 @@
|
|||
var html = notifications_tpl.format(
|
||||
e.attr('href'), // {0} // link to the source
|
||||
e.attr('photo'), // {1} // photo of the contact
|
||||
text, // {2} // preformatet text (autor + text)
|
||||
text, // {2} // preformatted text (autor + text)
|
||||
e.attr('date'), // {3} // date of notification (time ago)
|
||||
seenclass, // {4} // vistiting status of the notification
|
||||
new Date(e.attr('timestamp')*1000), // {5} //date of notification
|
||||
seenclass, // {4} // visited status of the notification
|
||||
new Date(e.attr('timestamp')*1000), // {5} // date of notification
|
||||
e.attr('url'), // {6} // profile url of the contact
|
||||
e.text().format(""), // {7} // clean status text
|
||||
contact // {8} //preformatat author (name + profile url)
|
||||
e.text().format(contact), // {7} // preformatted html (text including author profile url)
|
||||
'' // {8} // Deprecated
|
||||
);
|
||||
nnm.append(html);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue