Index: branches/5.3.x/core/units/logs/email_logs/email_logs_config.php =================================================================== diff -u -N -r15938 -r15944 --- branches/5.3.x/core/units/logs/email_logs/email_logs_config.php (.../email_logs_config.php) (revision 15938) +++ branches/5.3.x/core/units/logs/email_logs/email_logs_config.php (.../email_logs_config.php) (revision 15944) @@ -1,6 +1,6 @@ Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''), 'HtmlBody' => Array ('type' => 'string', 'default' => NULL), 'TextBody' => Array ('type' => 'string', 'default' => NULL), + 'Status' => Array ( + 'type' => 'int', + 'formatter' => 'kOptionsFormatter', 'options' => Array ( + EmailLogStatus::SENT => 'la_opt_Sent', + EmailLogStatus::ERROR => 'la_opt_Error' + ), 'use_phrases' => 1, 'not_null' => 1, 'default' => EmailLogStatus::SENT + ), + 'ErrorMessage' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''), 'SentOn' => Array ('type' => 'int', 'formatter' => 'kDateFormatter', 'default' => '#NOW#'), 'TemplateName' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''), 'EventType' => Array ( @@ -124,6 +132,8 @@ 'Subject' => Array ('filter_block' => 'grid_like_filter', 'width' => 200), 'TemplateName' => Array ('filter_block' => 'grid_like_filter', 'width' => 170), 'EventType' => Array ('title' => 'column:la_fld_Type', 'filter_block' => 'grid_options_filter', 'width' => 60), + 'Status' => Array ('filter_block' => 'grid_options_filter', 'width' => 100), + 'ErrorMessage' => Array ('filter_block' => 'grid_like_filter', 'width' => 200), 'SentOn' => Array ('title' => 'la_prompt_SentOn', 'filter_block' => 'grid_date_range_filter', 'width' => 145), // 'EventParams' => Array ('title' => 'la_col_EventParams', 'filter_block' => 'grid_like_filter'), 'ItemPrefix' => Array('filter_block' => 'grid_options_filter'),