Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1543)
+++ branches/2.8.x/CHANGELOG	(revision 1544)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 =========================== add small Features 2.8.2 ==========================
+15 Dez-2011 Build 1544 Dietmar Woellbrink (Luisehahne)
+# fix droplet import after new wb installtion
 14 Dez-2011 Build 1543 Dietmar Woellbrink (Luisehahne)
 # fix droplet sectionPicker
 # fix install config.php not writeable 
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1543)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1544)
@@ -52,5 +52,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.2');
-if(!defined('REVISION')) define('REVISION', '1543');
+if(!defined('REVISION')) define('REVISION', '1544');
 if(!defined('SP')) define('SP', 'SP2');
Index: branches/2.8.x/wb/install/index.php
===================================================================
--- branches/2.8.x/wb/install/index.php	(revision 1543)
+++ branches/2.8.x/wb/install/index.php	(revision 1544)
@@ -138,7 +138,7 @@
 			<td width="160" style="color: #666666;">PHP Version > 5.2.1</td>
 			<td width="60">
 				<?php
-			   if (version_compare(PHP_VERSION, '5.2.1', '>='))
+			   if (version_compare(PHP_VERSION, '5.2.1', '>'))
 			   {
 					?><font class="good">Yes</font><?php
 				} else {
Index: branches/2.8.x/wb/modules/droplets/install.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/install.php	(revision 1543)
+++ branches/2.8.x/wb/modules/droplets/install.php	(revision 1544)
@@ -83,7 +83,7 @@
 			$droplet = implode ( "\n", $cArray );
 			$name = substr($dropfile,0,-4);
 			$modified_when = time();
-			$modified_by = (method_exists($admin, 'get_user_id') ? $admin->get_user_id() : 1);
+			$modified_by = (method_exists($admin, 'get_user_id') && ($admin->get_user_id()!=null) ? $admin->get_user_id() : 1);
 			$sql  = 'INSERT INTO `'.TABLE_PREFIX.'mod_droplets` SET ';
 			$sql .= '`name` = \''.$name.'\', ';
 			$sql .= '`code` = \''.$droplet.'\', ';
