Skip to content
Snippets Groups Projects
Commit 9fad417f authored by deuce's avatar deuce
Browse files

Fix bug in last commit.

parent 7d2f5a0a
No related branches found
No related tags found
No related merge requests found
......@@ -45,12 +45,13 @@ if(!file_exists(ssjs_filename)) {
}
else {
str=str.replace(/^(.*?)<\?(xjs)?\s+/,
function (str, p1, p2, offset, s) {
script += "write("+escape_quotes(p1)+");\r\n";
in_xjs=true;
return '';
}
);
function (str, p1, p2, offset, s) {
script += "write("+escape_quotes(p1)+");\r\n";
in_xjs=true;
return '';
}
);
}
}
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment