diff options
author | Mike Greiling <mike@pixelcog.com> | 2016-10-08 01:28:11 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2016-10-08 01:28:11 -0500 |
commit | 66223856012c12b16ed022053af0c82beaa4a14c (patch) | |
tree | cfcd00d86f22f7bf8a24111d51f5bf7ecd68eba9 /app/views/notify | |
parent | 6b50c21140187ddf1ebfde4e958902398a9a02bf (diff) | |
download | gitlab-ce-66223856012c12b16ed022053af0c82beaa4a14c.tar.gz |
manually generate XHTML doctype since haml :format config cannot be overridden
Diffstat (limited to 'app/views/notify')
-rw-r--r-- | app/views/notify/pipeline_failed_email.html.haml | 2 | ||||
-rw-r--r-- | app/views/notify/pipeline_success_email.html.haml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/notify/pipeline_failed_email.html.haml b/app/views/notify/pipeline_failed_email.html.haml index a2ef4a92e03..e66ffa82c11 100644 --- a/app/views/notify/pipeline_failed_email.html.haml +++ b/app/views/notify/pipeline_failed_email.html.haml @@ -1,4 +1,4 @@ -!!! +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> %html{:lang => "en"} %head %meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/ diff --git a/app/views/notify/pipeline_success_email.html.haml b/app/views/notify/pipeline_success_email.html.haml index 5425b638ac3..49153ab33cd 100644 --- a/app/views/notify/pipeline_success_email.html.haml +++ b/app/views/notify/pipeline_success_email.html.haml @@ -1,4 +1,4 @@ -!!! +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> %html{:lang => "en"} %head %meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/ |