function date_data_loss_warning in Date 5.2
Same name and namespace in other branches
- 6.2 date/date_admin.inc \date_data_loss_warning()
1 call to date_data_loss_warning()
- date_field_settings_form in date/date_admin.inc
File
- date/date_admin.inc, line 411
- Date administration code.
Moved to separate file since there is a lot of code here that is not needed often.
Code
function date_data_loss_warning($name) {
return t('<p class="error">Changing the %name setting after data has been created could result in the loss of data!</p>', array(
'%name' => $name,
));
}