Lines 118-128
Link Here
|
118 |
|
118 |
|
119 |
// Our 'render' function for biblio_id |
119 |
// Our 'render' function for biblio_id |
120 |
var createBiblioLink = function(data, type, row) { |
120 |
var createBiblioLink = function(data, type, row) { |
121 |
return '<a title="' + _("View biblio details") + '" ' + |
121 |
return (row.biblio_id) ? |
|
|
122 |
'<a title="' + _("View biblio details") + '" ' + |
122 |
'href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=' + |
123 |
'href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=' + |
123 |
row.biblio_id + '">' + |
124 |
row.biblio_id + '">' + |
124 |
row.biblio_id + |
125 |
row.biblio_id + |
125 |
'</a>'; |
126 |
'</a>' : ''; |
126 |
}; |
127 |
}; |
127 |
|
128 |
|
128 |
// Our 'render' function for the library name |
129 |
// Our 'render' function for the library name |
129 |
- |
|
|