You are here

function date_data_loss_warning in Date 6.2

Same name and namespace in other branches
  1. 5.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 419
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 '<p class="error">' . t('Changing the %name setting after data has been created could result in the loss of data!', array(
    '%name' => $name,
  )) . '</p>';
}