﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
2045	module_export.php - Suche nach leerem configuration_key	web-looks.de	somebody	"Auch wenn $module_keys leer ist, wird eine Suche nach passenden configuration_keys in der Datenbank durchgeführt.

/admin/includes/module_export.php

Suchen nach:

{{{
		$key_value_query = xtc_db_query(""SELECT configuration_key,
												configuration_value,
												use_function,
												set_function
										   FROM "" . TABLE_CONFIGURATION . ""
										  WHERE configuration_key IN ('"" . implode(""', '"", $module_keys) . ""')
									   ORDER BY FIELD(configuration_key, '"".implode(""', '"", $module_keys).""')"");
		while ($key_value = xtc_db_fetch_array($key_value_query)) {
		  $keys_extra[$key_value['configuration_key']] = array(
			'title' => constant(strtoupper($key_value['configuration_key'] .'_TITLE')),
			'description' => constant(strtoupper($key_value['configuration_key'] .'_DESC')),
			'value' => $key_value['configuration_value'],
			'use_function' => $key_value['use_function'],
			'set_function' => $key_value['set_function'],
		  );
		}
}}}

DAVOR einfügen:

{{{
if (!empty($module_keys)) {
}}}

DANACH einfügen:

{{{
}
}}}"	Bug/Fehler	closed	normal	modified-shop-2.0.7.0	Admin	2.0.6.0	fixed				
