v1.18.x
psychobunny 11 years ago
parent 4d23b46916
commit e91ab5c660

@ -331,19 +331,21 @@
for (var i = 0, ii = matches.length; i < ii; i++) { for (var i = 0, ii = matches.length; i < ii; i++) {
var conditionalBlock = matches[i].split(/<!-- ELSE -->/); var conditionalBlock = matches[i].split(/<!-- ELSE -->/);
var statement = new RegExp("(<!--[\\s]*IF " + key + "[\\s]*-->)|(<!--[\\s]*ENDIF " + key + "[\\s]*-->)", 'gi');
if (conditionalBlock[1]) { if (conditionalBlock[1]) {
// there is an else statement // there is an else statement
if (!value) { if (!value) {
template = template.replace(matches[i], conditionalBlock[1].replace(/<!-- ((\IF\b)|(\bENDIF\b))([^@]*?)-->/gi, '')); template = template.replace(matches[i], conditionalBlock[1].replace(statement, ''));
} else { } else {
template = template.replace(matches[i], conditionalBlock[0].replace(/<!-- ((\IF\b)|(\bENDIF\b))([^@]*?)-->/gi, '')); template = template.replace(matches[i], conditionalBlock[0].replace(statement, ''));
} }
} else { } else {
// regular if statement // regular if statement
if (!value) { if (!value) {
template = template.replace(matches[i], ''); template = template.replace(matches[i], '');
} else { } else {
template = template.replace(matches[i], matches[i].replace(/<!-- ((\IF\b)|(\bENDIF\b))([^@]*?)-->/gi, '')); template = template.replace(matches[i], matches[i].replace(statement, ''));
} }
} }
} }

Loading…
Cancel
Save