In copyright notice pre-fill, use "Copyright" instead of (C) symbol

This commit is contained in:
Alex Liebowitz 2016-09-21 03:42:31 -04:00
parent 5476c29322
commit 452f808e32

View file

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