Skip to content
Snippets Groups Projects
Commit e5d47d29 authored by Marian Ďurkovič's avatar Marian Ďurkovič
Browse files

Don't escape single quotes since it's not needed anymore

parent f88bf2c1
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,7 @@ function vlm_schedule_type_change( name )
function sanitize_input( str )
{
return str.replace( /\'/g, '\\\'' ).replace( /\"/g, '\\\"' ).replace( /^/, '"' ).replace( /$/, '"' ).replace( /\ option\ /g, '" option "' );
return str.replace( /\"/g, '\\\"' ).replace( /^/, '"' ).replace( /$/, '"' ).replace( /\ option\ /g, '" option "' );
}
function update_vlm_add_broadcast()
......
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