summaryrefslogtreecommitdiff
path: root/src/node/utils
diff options
context:
space:
mode:
authorSimon Gaeremynck <gaeremyncks@gmail.com>2015-10-22 16:09:44 +0100
committerSimon Gaeremynck <gaeremyncks@gmail.com>2015-10-22 16:09:44 +0100
commit7289e8907028520fcc16d31b67827d44054145e6 (patch)
treee0df0679d519da92e78a188d3b00d5f11cd4e6c9 /src/node/utils
parent2bfc3026d2e549064bd13e496d407169b2755df5 (diff)
downloadetherpad-lite-7289e8907028520fcc16d31b67827d44054145e6.zip
Use `Etherpad` rather than `Etherpad Lite` when exporting HTML
Diffstat (limited to 'src/node/utils')
-rw-r--r--src/node/utils/ExportHtml.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node/utils/ExportHtml.js b/src/node/utils/ExportHtml.js
index fef2508c..ffc7bc58 100644
--- a/src/node/utils/ExportHtml.js
+++ b/src/node/utils/ExportHtml.js
@@ -488,9 +488,9 @@ exports.getPadHTMLDocument = function (padId, revNum, noDocType, callback)
(noDocType ? '' : '<!doctype html>\n') +
'<html lang="en">\n' + (noDocType ? '' : '<head>\n' +
'<title>' + Security.escapeHTML(padId) + '</title>\n' +
- '<meta name="generator" content="Etherpad Lite">\n' +
- '<meta name="author" content="Etherpad Lite">\n' +
- '<meta name="changedby" content="Etherpad Lite">\n' +
+ '<meta name="generator" content="Etherpad">\n' +
+ '<meta name="author" content="Etherpad">\n' +
+ '<meta name="changedby" content="Etherpad">\n' +
'<meta charset="utf-8">\n' +
'<style> * { font-family: arial, sans-serif;\n' +
'font-size: 13px;\n' +