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

Replace undefined variables with nothing (not undefined).

parent 8b31f3b8
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,8 @@ function parse_regular_bit(bit, objname, obj) {
}
function escape_match(start, exp, end) {
if(exp==undefined)
exp='';
if(start=="%%")
exp=html_encode(exp,true,false,false);
if(start=="^^")
......
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