From 1c3d88d4a4b6b86cd4612ded195e669ef7c676b8 Mon Sep 17 00:00:00 2001 From: Paul Schreiber Date: Thu, 10 Sep 2015 10:08:06 -0700 Subject: [PATCH] eliminate unnecessary string concatentation --- mathjax-latex-admin.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/mathjax-latex-admin.php b/mathjax-latex-admin.php index ebc443d..b176e11 100644 --- a/mathjax-latex-admin.php +++ b/mathjax-latex-admin.php @@ -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 ' . - 'MathJax CDN Terms of Service.', + 'Allows use of the MathJax hosted content delivery network. By using this, you are agreeing to the MathJax CDN Terms of Service.', "", 'use_cdn' );