diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 02:53:32 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 02:53:32 +0000 |
commit | aefce16b306505c6cfed8d87e975b2c9680559b4 (patch) | |
tree | d79433a597577196a3d6c7dba08beabc9cea3eb2 /mod/tinymce | |
parent | 13a495664c79037557e6c5ea7c3e442be0523139 (diff) | |
download | elgg-aefce16b306505c6cfed8d87e975b2c9680559b4.tar.gz elgg-aefce16b306505c6cfed8d87e975b2c9680559b4.tar.bz2 |
cleaned up some of the other smaller plugins
git-svn-id: http://code.elgg.org/elgg/trunk@7468 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/tinymce')
-rw-r--r-- | mod/tinymce/languages/en.php | 8 | ||||
-rw-r--r-- | mod/tinymce/start.php | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/mod/tinymce/languages/en.php b/mod/tinymce/languages/en.php index f5d6550dd..811e93492 100644 --- a/mod/tinymce/languages/en.php +++ b/mod/tinymce/languages/en.php @@ -1,9 +1,11 @@ <?php +/** + * TinyMCE language pack. + * + * @package ElggTinyMCE + */ $english = array( - /** - * Menu items and titles - */ 'tinymce:remove' => "Remove editor", 'tinymce:add' => "Add editor", 'tinymce:word_count' => 'Word count: ', diff --git a/mod/tinymce/start.php b/mod/tinymce/start.php index b605f92f6..bc54c36a0 100644 --- a/mod/tinymce/start.php +++ b/mod/tinymce/start.php @@ -2,12 +2,10 @@ /** * TinyMCE wysiwyg editor * - * @package TinyMCE - **/ + * @package ElggTinyMCE + */ function tinymce_init() { - global $CONFIG; - elgg_extend_view('css', 'tinymce/css'); elgg_extend_view('embed/custom_insert_js', 'tinymce/embed_custom_insert_js'); } |