|
|
@@ -603,7 +603,7 @@ var gagajf = {
|
|
|
success : function(result) {
|
|
|
if (typeof(result.status) == 'undefined' || result.status == 200) { // 성공
|
|
|
if (!gagajf.isNull(result.message)) {
|
|
|
- mcxDialog.alertC(result.message, {
|
|
|
+ mcxDialog.alertC(result.message.replaceAll("<", "<").replaceAll(">", ">"), {
|
|
|
sureBtnText: "확인",
|
|
|
sureBtnClick: function() {
|
|
|
if (typeof(callbackFn) == "function") {
|
|
|
@@ -680,7 +680,7 @@ var gagajf = {
|
|
|
success : function(result) {
|
|
|
if (typeof(result.status) == 'undefined' || result.status == 200) { // 성공
|
|
|
if (!gagajf.isNull(result.message)) {
|
|
|
- mcxDialog.alertC(result.message, {
|
|
|
+ mcxDialog.alertC(result.message.replaceAll("<", "<").replaceAll(">", ">"), {
|
|
|
sureBtnText: "확인",
|
|
|
sureBtnClick: function() {
|
|
|
if (typeof(callbackFn) == "function") {
|