diff options
author | thomascube <thomas@roundcube.net> | 2006-12-31 15:16:09 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-12-31 15:16:09 +0000 |
commit | 18e2a3efd06b8ffe3b0d27707c6cf650e4ae56a3 (patch) | |
tree | 30d6c8b322533cd96488693c92044d158fcf0ba5 /program/include | |
parent | 2af4e4879ce3eddb52210731f397976534a07506 (diff) |
Event handler removing again. Closes #1484200
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/main.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index f04636a4d..d914e3ecb 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1088,9 +1088,9 @@ function Q($str, $mode='strict', $newlines=TRUE) * Quote a given string. Alias function for rep_specialchars_output * @see rep_specialchars_output */ -function JQ($str, $mode='strict', $newlines=TRUE) +function JQ($str) { - return rep_specialchars_output($str, 'js', $mode, $newlines); + return rep_specialchars_output($str, 'js'); } |