From e5c1de74ac0f74d51aac027f8b661d3f77db8a92 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 11 Jul 2005 10:55:40 +0000 Subject: [PATCH] unitialised var fixed git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@936 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/addons/ldapmanager/class_import.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 ) -- 2.30.2