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