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);