View | Details | Raw Unified | Return to bug 41769
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-2 / +1 lines)
Lines 1371-1377 Link Here
1371
                                        render: function (data, type, row, meta) {
1371
                                        render: function (data, type, row, meta) {
1372
                                            let node = '<a href="suggestion.pl?suggestionid=%s&amp;op=show" title="%s">%s'.format(row.suggestion_id, _("suggestion"), row.title);
1372
                                            let node = '<a href="suggestion.pl?suggestionid=%s&amp;op=show" title="%s">%s'.format(row.suggestion_id, _("suggestion"), row.title);
1373
                                            if(row.author) {
1373
                                            if(row.author) {
1374
                                               node += _("%s%s, by %s%s").format("", "", row.author.escapeHtml(), "");
1374
                                                node += ", %s %s".format(_("by"),row.author.escapeHtml());
1375
                                            }
1375
                                            }
1376
                                            node += '</a><br />';
1376
                                            node += '</a><br />';
1377
                                            if(row.copyright_date) node += ' &copy; <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date);
1377
                                            if(row.copyright_date) node += ' &copy; <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date);
1378
- 

Return to bug 41769