- Timestamp:
- 05/27/11 18:49:29 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Controllers/QueryController.cs
r6303 r6315 45 45 46 46 // Get runs from filter 47 48 47 49 48 QueryServiceClient client = Query.GetClientFactory(); 50 49 51 52 long[] ids = client.GetRunIds((CombinedFilter)Session["Content"]); 50 long[] ids; 51 if (Session["Content"] != null) 52 ids = client.GetRunIds((CombinedFilter)Session["Content"]); 53 else 54 ids = new long[0]; 53 55 54 56 QueryModel qm = new QueryModel();
Note: See TracChangeset
for help on using the changeset viewer.