Remove "all rights reserved" wording

This commit is contained in:
Alex Liebowitz 2016-09-21 02:28:11 -04:00
parent 8340759934
commit 28e7f1e3b2

View file

@ -261,8 +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 : '') +
'. All rights reserved.';
newState.copyrightNotice = '\u{00a9} ' + (new Date().getFullYear()) + (author ? ' ' + author : '');
}
this.setState(newState);
@ -395,7 +394,7 @@ var PublishPage = React.createClass({
<option data-url="https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International</option>
<option data-url="https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode">Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International</option>
<option>Public Domain</option>
<option data-license-type="copyright" {... this.state.copyrightChosen ? {value: this.state.copyrightNotice} : {}}>Copyright, All Rights Reserved ...</option>
<option data-license-type="copyright" {... this.state.copyrightChosen ? {value: this.state.copyrightNotice} : {}}>Copyrighted...</option>
<option data-license-type="other" {... this.state.otherLicenseChosen ? {value: this.state.otherLicenseDescription} : {}}>Other...</option>
</FormField>
<FormField type="hidden" ref="meta_license_url" name="license_url" value={this.getLicenseUrl()} />