Hi,
during installation the shop mod beta in 4images v1.7.1 I made some changes like its written in the mod-installation.txt
At first I uploaded this new file /4images/admin/plugins/kundendaten.php
and in admin/settings.php I added the function warenkorb_select after the function function show_language_dir_select like this:
function warenkorb_select($setting_name, $setting_value) {
global $warenkorb_optionlist;
echo "<select name=\"setting_item[".$setting_name."]\">";
foreach ($warenkorb_optionlist as $key => $val) {
echo "<option value=\"$key\"";
if ($setting_value == $key) {
echo " selected=\"selected\"";
}
echo ">".$val."</option>";
}
echo "</select>";
}
and added in admin/settings.php a new setting_group at the end of the file like this:
show_table_separator($setting_group[8], 2, "#setting_group_8");
show_setting_row("porto");
show_setting_row("bearbeitung");
show_form_footer($lang['save_changes'], "", 2);
}
show_admin_footer();
?>
I changed nothing else in the admin-folder, and when I re-upload the original admin/settings.php the error appears also.