mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 06:53:09 +00:00
(Robert Tansley)
- now checks if context is null before aborting (before, would get NullPointerException if DB connection failed) git-svn-id: http://scm.dspace.org/svn/repo/trunk@1704 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -92,7 +92,11 @@
|
|||||||
|
|
||||||
JSPManager.showInternalError(request, response);
|
JSPManager.showInternalError(request, response);
|
||||||
}
|
}
|
||||||
finally {
|
finally
|
||||||
|
{
|
||||||
|
if (context != null)
|
||||||
|
{
|
||||||
context.abort();
|
context.abort();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
%>
|
%>
|
||||||
|
Reference in New Issue
Block a user