Index: branches/2.8.x/wb/modules/droplets/droplets.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/droplets.php	(revision 1722)
+++ branches/2.8.x/wb/modules/droplets/droplets.php	(revision 1723)
@@ -30,7 +30,7 @@
 	throw new IllegalFileException();
 }
 /* -------------------------------------------------------- */
-
+    require_once(WB_PATH.'/framework/class.admin.php');
 	function do_eval($_x_codedata, $_x_varlist, &$wb_page_data)
 	{
 		extract($_x_varlist, EXTR_SKIP);
@@ -112,7 +112,7 @@
 	function evalDroplets( &$wb_page_data, $max_loops = 3 ) {
 		$max_loops = ((int)$max_loops = 0 ? 3 : (int)$max_loops);
 		while( (processDroplets($wb_page_data) == true) && ($max_loops > 0))
-		{ 
+		{
 			$max_loops--;
 		}
 		return $wb_page_data;
Index: branches/2.8.x/wb/modules/droplets/example/Skype.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/example/Skype.php	(revision 1722)
+++ branches/2.8.x/wb/modules/droplets/example/Skype.php	(revision 1723)
@@ -1,3 +1,4 @@
 //:Your skype status as an image
 //:Commandline to use: [[skype?user=skypename]]
+$user = (isset($user) && ($user!='') ? $user : '');
 return '<img src="http://mystatus.skype.com/'.$user.'.png?t='.time().'" alt="My Skype status" />';
\ No newline at end of file
