$cl_start_week = $user->week_start;
$cl_tracking_mode = $user->tracking_mode;
$cl_record_type = $user->record_type;
- $cl_uncompleted_entries = $user->uncompleted_entries;
+ $cl_uncompleted_entries = $user->uncompleted_indicators;
// Which plugins do we have enabled?
$plugins = explode(',', $user->plugins);
// Prepare uncompleted entries choices.
$uncompleted_entries_options = array();
- $uncompleted_entries_options[ENTRIES_NONE] = $i18n->getKey('form.profile.entries_none');
- $uncompleted_entries_options[ENTRIES_USERS_PAGE] = $i18n->getKey('form.profile.entries_users_page');
+ $uncompleted_entries_options[UNCOMPLETED_INDICATORS_NONE] = $i18n->getKey('form.profile.uncompleted_indicators_none');
+ $uncompleted_entries_options[UNCOMPLETED_INDICATORS] = $i18n->getKey('form.profile.uncompleted_indicators_show');
$form->addInput(array('type'=>'combobox','name'=>'uncompleted_entries','style'=>'width: 150px;','data'=>$uncompleted_entries_options,'value'=>$cl_uncompleted_entries));
$form->addInput(array('type'=>'checkbox','name'=>'charts','data'=>1,'value'=>$cl_charts));