mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 15:03:18 +00:00
[DS-2813] fix due to migration of collection_id to uuid
This commit is contained in:
@@ -42,7 +42,7 @@
|
|||||||
(List<Collection>) request.getAttribute("collections");
|
(List<Collection>) request.getAttribute("collections");
|
||||||
|
|
||||||
//get collection id from the collection home
|
//get collection id from the collection home
|
||||||
int collection_id = (Integer) request.getAttribute("collection_id");
|
String collection_id = (String) request.getAttribute("collection_id");
|
||||||
|
|
||||||
//check if we need to display the "no collection selected" error
|
//check if we need to display the "no collection selected" error
|
||||||
Boolean noCollection = (Boolean) request.getAttribute("no.collection");
|
Boolean noCollection = (Boolean) request.getAttribute("no.collection");
|
||||||
|
Reference in New Issue
Block a user