|
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&op=show" title="%s">%s'.format(row.suggestion_id, _("suggestion"), row.title); |
1372 |
let node = '<a href="suggestion.pl?suggestionid=%s&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 += ' © <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date); |
1377 |
if(row.copyright_date) node += ' © <span class="suggestion_copyrightdate">%s</span>'.format(row.copyright_date); |
| 1378 |
- |
|
|