summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-12-31 15:16:09 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-12-31 15:16:09 +0000
commit75c786cf1e1bb53bccc8efca3e83d9f3059f1482 (patch)
treec89f01b8fda5ab5631d1068e6ef84460089f791c /roundcubemail/program/include
parentfc15db763489237bf73076a8b9ef8732438bd9a0 (diff)
Event handler removing again. Closes #1484200
git-svn-id: https://svn.roundcube.net/trunk@444 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
-rw-r--r--roundcubemail/program/include/main.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc
index f04636a4d..d914e3ecb 100644
--- a/roundcubemail/program/include/main.inc
+++ b/roundcubemail/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');
}