mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 15:03:18 +00:00
DS-3080 Counting withdrawn items (bugfix)
This commit is contained in:
@@ -1173,6 +1173,6 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
|
|||||||
@Override
|
@Override
|
||||||
public int countWithdrawnItems(Context context) throws SQLException {
|
public int countWithdrawnItems(Context context) throws SQLException {
|
||||||
// return count of items that are in archive and withdrawn
|
// return count of items that are in archive and withdrawn
|
||||||
return itemDAO.countItems(context, true, true);
|
return itemDAO.countItems(context, false, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user