From: hickert Date: Mon, 11 Jul 2005 10:55:40 +0000 (+0000) Subject: unitialised var fixed X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e5c1de74ac0f74d51aac027f8b661d3f77db8a92;p=gosa.git unitialised var fixed git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@936 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/addons/ldapmanager/class_import.inc b/plugins/addons/ldapmanager/class_import.inc index 7d23ba062..d672df64d 100644 --- a/plugins/addons/ldapmanager/class_import.inc +++ b/plugins/addons/ldapmanager/class_import.inc @@ -42,7 +42,8 @@ class ldifimport extends plugin $smarty->assign("type","importfile"); - + + $handle = NULL; // Check if there is a file submitted @@ -87,7 +88,7 @@ class ldifimport extends plugin if(!empty($_POST['cleanup'])) $cleanup = true; else $cleanup = false; // - + $ErrorStr=""; $check = $ldap->import_complete_ldif($str,$ErrorStr,$overwrite,$cleanup); if($check == INSERT_OK )