diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 01:19:33 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 01:19:33 +0000 |
commit | 89ded32abebd0f2100e0014249df54bde7a44258 (patch) | |
tree | 81c542c9d101a75002a2cc3aed4e2de7e2eda9c5 /mod/tinymce | |
parent | 6ed8d3f7c8b98f73ac461a7a45798b8f1ffb173b (diff) | |
download | elgg-89ded32abebd0f2100e0014249df54bde7a44258.tar.gz elgg-89ded32abebd0f2100e0014249df54bde7a44258.tar.bz2 |
Refs #2700 changed underscores to hyphens for the forms css elements
git-svn-id: http://code.elgg.org/elgg/trunk@7492 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/tinymce')
-rw-r--r-- | mod/tinymce/views/default/input/longtext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/tinymce/views/default/input/longtext.php b/mod/tinymce/views/default/input/longtext.php index 2f90d5a1c..995cd8fd1 100644 --- a/mod/tinymce/views/default/input/longtext.php +++ b/mod/tinymce/views/default/input/longtext.php @@ -84,9 +84,9 @@ function toggleEditor(id) { ?> -<a class="longtext_control toggle_editor small link" href="javascript:toggleEditor('<?php echo $vars['internalname']; ?>');"><?php echo elgg_echo('tinymce:remove'); ?></a> +<a class="longtext-control toggle_editor small link" href="javascript:toggleEditor('<?php echo $vars['internalname']; ?>');"><?php echo elgg_echo('tinymce:remove'); ?></a> <!-- show the textarea --> -<textarea class="input_textarea mceEditor" name="<?php echo $vars['internalname']; ?>" <?php echo $vars['js']; ?>><?php echo htmlentities($vars['value'], null, 'UTF-8'); ?></textarea> +<textarea class="input-textarea mceEditor" name="<?php echo $vars['internalname']; ?>" <?php echo $vars['js']; ?>><?php echo htmlentities($vars['value'], null, 'UTF-8'); ?></textarea> <script type="text/javascript"> $(document).ready(function() { |