diff options
author | thomascube <thomas@roundcube.net> | 2012-02-03 11:12:35 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-02-03 11:12:35 +0000 |
commit | fc7b5b8283173ebb5209da124e5b283e5b86dfa7 (patch) | |
tree | 644a09bf21831f5a7079dfef7d5d3a68dd0dd95a /program/steps/mail | |
parent | 43875379d5fcfc4e4d29e2edcbbed614a2050f7d (diff) |
Get rid of global $__skin_path variable (#1488336)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/compose.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 6b2fa7b2b..cbef36884 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -775,7 +775,7 @@ function rcmail_compose_body($attrib) $OUTPUT->include_script('googiespell.js'); $OUTPUT->add_script(sprintf( - "var googie = new GoogieSpell('\$__skin_path/images/googiespell/','?_task=utils&_action=spell&lang=', %s);\n". + "var googie = new GoogieSpell('%s/images/googiespell/','%s&lang=', %s);\n". "googie.lang_chck_spell = \"%s\";\n". "googie.lang_rsm_edt = \"%s\";\n". "googie.lang_close = \"%s\";\n". @@ -787,6 +787,8 @@ function rcmail_compose_body($attrib) "googie.setSpellContainer('spellcheck-control');\n". "googie.decorateTextarea('%s');\n". "%s.set_env('spellcheck', googie);", + $RCMAIL->output->get_skin_path(), + $RCMAIL->url(array('_task' => 'utils', '_action' => 'spell')), !empty($dictionary) ? 'true' : 'false', JQ(Q(rcube_label('checkspelling'))), JQ(Q(rcube_label('resumeediting'))), |