[DS-2813] fix due to migration of collection_id to uuid

This commit is contained in:
Ivan Masár
2015-10-19 13:47:23 +02:00
parent 9641da5846
commit 36091a59d8

View File

@@ -42,7 +42,7 @@
(List<Collection>) request.getAttribute("collections");
//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
Boolean noCollection = (Boolean) request.getAttribute("no.collection");