From 452f808e324fb08060a5e03d58a9d9e714b5ab46 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Wed, 21 Sep 2016 03:42:31 -0400 Subject: [PATCH] In copyright notice pre-fill, use "Copyright" instead of (C) symbol --- js/page/publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/page/publish.js b/js/page/publish.js index 664cf72da..925da44cd 100644 --- a/js/page/publish.js +++ b/js/page/publish.js @@ -261,7 +261,7 @@ var PublishPage = React.createClass({ if (licenseType == 'copyright') { var author = this.refs.meta_author.getValue(); - newState.copyrightNotice = '\u{00a9} ' + (new Date().getFullYear()) + (author ? ' ' + author : ''); + newState.copyrightNotice = 'Copyright ' + (new Date().getFullYear()) + (author ? ' ' + author : ''); } this.setState(newState);