Corrected language var for module image as suggested by archivar

Changed trigger_error() error_type to E_USER_WARNING
This commit is contained in:
Marc Alexander
2011-04-03 19:20:41 +02:00
parent a18a0166e6
commit bbc9bb3043
3 changed files with 3 additions and 3 deletions

View File

@@ -1112,7 +1112,7 @@ function check_file_src($value, $key, $module_id)
if (!empty($error))
{
trigger_error($error . adm_back_link(append_sid("{$phpbb_root_path}adm/index.$phpEx", 'i=portal&mode=config&module_id=' . $module_id)));
trigger_error($error . adm_back_link(append_sid("{$phpbb_root_path}adm/index.$phpEx", 'i=portal&mode=config&module_id=' . $module_id)), E_USER_WARNING );
}
}