diff options
| author | Jonathan Prykop <jonathan@freeside.biz> | 2015-12-23 21:46:53 -0600 |
|---|---|---|
| committer | Mitch Jackson <mitch@freeside.biz> | 2018-10-09 12:22:58 -0400 |
| commit | 4252e76a77bd4def206cfaa7466ba39bb1f027b6 (patch) | |
| tree | 636808247b4e7c8b6584e6ddb58947e2e73e9277 /httemplate | |
| parent | ec1cb553b60314cadce24d5360de61e43c42e344 (diff) | |
RT#38217 Send email when logging conditions are met [default template & dump-email_to upgrade]
Diffstat (limited to 'httemplate')
| -rw-r--r-- | httemplate/edit/log_email.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/httemplate/edit/log_email.html b/httemplate/edit/log_email.html index bbce7c708..709a24069 100644 --- a/httemplate/edit/log_email.html +++ b/httemplate/edit/log_email.html @@ -18,6 +18,7 @@ { 'field' => 'msgnum', 'type' => 'select-msg_template', 'empty_label' => 'Select template', + 'value' => $msgnum, 'required' => 1, }, ], @@ -42,4 +43,14 @@ my %opts = @_; die "access denied" unless $FS::CurrentUser::CurrentUser->access_right([ 'View system logs', 'Configuration' ]); +my $msgnum = $cgi->param('msgnum'); +unless ($msgnum) { + my ($msg_template) = qsearch('msg_template',{ msgname => 'System log' }); + # doesn't seem worth having a config just for the default selected template + # if they've deleted the system-generated one, just default to empty "Select template" + if ($msg_template) { + $msgnum = $msg_template->msgnum; + } +} + </%init> |
