Merge branch 'main' of https://git.vas2.com/geoinfo_eGov_work
commit
2684374663
2
path.txt
2
path.txt
|
|
@ -1 +1 @@
|
|||
eclipse=D:\thkim_home\eGovFrameDev-3.8.0-64bit\geoinfo\user\eclipse
|
||||
eclipse=R:\eclipse\eclipse
|
||||
|
|
@ -179,7 +179,12 @@ public class MainController
|
|||
{
|
||||
ModelAndView mv = new ModelAndView();
|
||||
|
||||
int nCls = MyUtil.getIntegerFromObject(request.getSession().getAttribute("CLS"));
|
||||
int nCls = -1;
|
||||
Object oCls = request.getSession().getAttribute("CLS");
|
||||
if( oCls != null ) {
|
||||
nCls = MyUtil.getIntegerFromObject(oCls);
|
||||
}
|
||||
|
||||
mv.addObject("cls", nCls);
|
||||
|
||||
String src = request.getParameter("src");
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
var loginCheck = '${userId}' == "" ? false : true;
|
||||
var popupFlag = Cookies.get("popupFlag");
|
||||
if (loginCheck && popupFlag !== "N") {
|
||||
if(('${userId}' == 'admin_user' || ${cls} === 65535 )){
|
||||
if(('${userId}' == 'admin_user' || "${cls}" === "65535" )){
|
||||
openPop();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue