diff options
| author | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-11-22 12:10:31 +0000 |
|---|---|---|
| committer | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-11-22 12:10:31 +0000 |
| commit | 69e33a9d7df3ec4795019623f462614f54095dfd (patch) | |
| tree | f2fdc9099250780075f5ec74e44613a20314ed56 /phpBB/adm | |
| parent | 2906dbdd8aa0a625a161821fc1a7d41bd0c438ef (diff) | |
| download | forums-69e33a9d7df3ec4795019623f462614f54095dfd.tar forums-69e33a9d7df3ec4795019623f462614f54095dfd.tar.gz forums-69e33a9d7df3ec4795019623f462614f54095dfd.tar.bz2 forums-69e33a9d7df3ec4795019623f462614f54095dfd.tar.xz forums-69e33a9d7df3ec4795019623f462614f54095dfd.zip | |
plop
git-svn-id: file:///svn/phpbb/trunk@6635 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
| -rw-r--r-- | phpBB/adm/style/editor.js | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/phpBB/adm/style/editor.js b/phpBB/adm/style/editor.js index 8a641efe03..370e3c06ba 100644 --- a/phpBB/adm/style/editor.js +++ b/phpBB/adm/style/editor.js @@ -176,10 +176,13 @@ function insert_text(text, spaces, popup) /** * Add inline attachment at position */ -function attach_inline() +function attach_inline(index, filename, element) { - insert_text('[attachment=' + document.forms[form_name].elements['attachments'].value + ']' + document.forms[form_name].elements['attachments'].options[document.forms[form_name].elements['attachments'].selectedIndex].text + '[/attachment]'); - document.forms[form_name].elements[text_name].focus(); + insert_text('[attachment=' + index + ']' + filename + '[/attachment]'); + if (element) + { + element.focus(); + } } /** @@ -561,5 +564,4 @@ function getCaretPosition(txtarea) } return (caretPos); -} - +}
\ No newline at end of file |
