antoniop
committed
on 11 Nov 16
- Fix site-wide-status-change so it doesn't require an implicit (broken) cast to boolean
- Pass permissions context to tree-form.adp so admiā€¦ Show more
- Fix site-wide-status-change so it doesn't require an implicit (broken) cast to boolean

- Pass permissions context to tree-form.adp so admins of xowiki instances can create and map categories there

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>