Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 895)
+++ trunk/CHANGELOG	(revision 896)
@@ -11,6 +11,9 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.0 -------------------------------------
+30-Dec-2008 Matthias Gallas
+-	modul_uninstall: Removed undefined and unused constants (DB_FETCHMODE_ASSOC)
+!	modul_uninstall: added language variable $TEXT['FILE'] instead of "Datei"
 29-Dec-2008 Dietrich Roland Pehlke
 +	add language support for the errormessages inside the uninstall.php files for modules
 	and templates.
Index: trunk/wb/admin/modules/uninstall.php
===================================================================
--- trunk/wb/admin/modules/uninstall.php	(revision 895)
+++ trunk/wb/admin/modules/uninstall.php	(revision 896)
@@ -98,7 +98,7 @@
 	while ($data = $info->fetchRow() ) {
 	
 		$temp = $database->query("SELECT page_title from ".TABLE_PREFIX."pages where page_id=".$data['page_id']);
-		$temp_title = $temp->fetchRow( DB_FETCHMODE_ASSOC );
+		$temp_title = $temp->fetchRow();
 		
 		$page_info = array(
 			'id'	=> $data['page_id'], 
@@ -111,7 +111,7 @@
 	/**
 	*	Printing out the error-message and die().
 	*/
-	$admin->print_error(str_replace ("Datei", "Modul", $MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE']).$msg.$page_names);
+	$admin->print_error(str_replace ($TEXT['FILE'], "Modul", $MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE']).$msg.$page_names);
 }
 
 // Check if we have permissions on the directory
