Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 1031)
+++ trunk/CHANGELOG	(revision 1032)
@@ -12,6 +12,7 @@
 
 ------------------------------------- 2.8.0 -------------------------------------
 04-July-2009 Matthias Gallas
+#	Fixed two bugs in droplets-plugin for FCKEditor (thanks to Aldus)
 !	Changed Template from FCKEditor plugin WBModules to .htt
 +	Added Droplets plugin to FCKEditor (ticket #737) (Big Thanks to vizmotion)
 03-July-2009 Matthias Gallas
Index: trunk/wb/modules/fckeditor/fckeditor/editor/plugins/WBDroplets/fck_wbdroplets.php
===================================================================
--- trunk/wb/modules/fckeditor/fckeditor/editor/plugins/WBDroplets/fck_wbdroplets.php	(revision 1031)
+++ trunk/wb/modules/fckeditor/fckeditor/editor/plugins/WBDroplets/fck_wbdroplets.php	(revision 1032)
@@ -41,6 +41,7 @@
 $get_droplet = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_droplets where active=1 ORDER BY name");
 if($get_droplet->numRows() > 0) {
 	// Loop through pages
+	$list = "";
 	while($droplet = $get_droplet->fetchRow()) {
 		// method page_is_visible was introduced with WB 2.7
 		$title = stripslashes($droplet['name']);
@@ -56,6 +57,7 @@
 	$template->parse('page_list', 'page_list_block', false);
 }
 $template->set_var('LIST', $list);
+$template->set_var("CHARSET", defined('DEFAULT_CHARSET') ? DEFAULT_CHARSET : 'utf-8' );
 
 // Parse the template object
 $template->parse('main', 'main_block', false);
