Skip to content

Commit

Permalink
eliminate unnecessary string concatentation
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschreiber committed Sep 10, 2015
1 parent a1f7be8 commit 1c3d88d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mathjax-latex-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,7 @@ function plugin_options_menu() {
$use_cdn = get_option( 'kblog_mathjax_use_cdn', true ) ? 'checked="true"' : '';

$this->admin_table_row( 'Use MathJax CDN Service?',
'Allows use of the MathJax hosted content delivery network. ' .
'By using this, you are agreeing to the ' .
'<a href="http://www.mathjax.org/download/mathjax-cdn-terms-of-service/">MathJax CDN Terms of Service</a>.',
'Allows use of the MathJax hosted content delivery network. By using this, you are agreeing to the <a href="http://www.mathjax.org/download/mathjax-cdn-terms-of-service/">MathJax CDN Terms of Service</a>.',
"<input type='checkbox' name='kblog_mathjax_use_cdn' id='use_cdn' value='1' $use_cdn/>",
'use_cdn'
);
Expand Down

0 comments on commit 1c3d88d

Please sign in to comment.