Merge branch 'maint-rel-1.6' into develop
This commit is contained in:
commit
09ee9fc0df
1 changed files with 4 additions and 2 deletions
|
@ -58,10 +58,12 @@ public class PageController extends FreemarkerHttpServlet{
|
||||||
|
|
||||||
if( pageActs == null && dgActs == null){
|
if( pageActs == null && dgActs == null){
|
||||||
return Actions.AUTHORIZED;
|
return Actions.AUTHORIZED;
|
||||||
}else if( pageActs == null && dgActs != null ){
|
}else if( pageActs == null ){
|
||||||
return dgActs;
|
return dgActs;
|
||||||
|
}else if( dgActs == null ){
|
||||||
|
return pageActs;
|
||||||
}else{
|
}else{
|
||||||
return pageActs;
|
return pageActs.and(dgActs);
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue