michaela
committed
on 31 May 17
Return an error if dependency is missing.

This happens if the (info file of the) required package is not present.
This solution is a bit di… Show more
Return an error if dependency is missing.

This happens if the (info file of the) required package is not present.

This solution is a bit dirty, but better than throwing the tcl error

"no such variable: spec_file"

Show less

/cadmin/site-wide-status-change.xql (+1 -1)
1 1 <?xml version="1.0"?>
2 2 <queryset>
3 3
4 4 <fullquery name="toggle_site_wide_status">     
5 5       <querytext>
6 6      
7 7     update category_trees
8       set site_wide_p = case when :action = '1' then 't' else 'f' end
  8     set site_wide_p = (:action = '1')
9 9     where tree_id  = :tree_id
10 10
11 11       </querytext>
12 12 </fullquery>
13 13
14 14  
15 15 </queryset>