Remove unneeded spaces inside html in NoLocalSettings.php
authorumherirrender <umherirrender_de.wp@web.de>
Tue, 12 Aug 2014 17:57:13 +0000 (19:57 +0200)
committerUmherirrender <umherirrender_de.wp@web.de>
Wed, 27 Aug 2014 18:46:32 +0000 (18:46 +0000)
A <a> should not be followed by a space, because the space is
already before the tag. This gives double spaces when
copy and paste the word and link.

Change-Id: Ia46cafc6ea7359e92a315678020e7815810aac5a

includes/templates/NoLocalSettings.php

index 33b2400..bfa153d 100644 (file)
@@ -81,9 +81,9 @@ if ( !function_exists( 'session_name' ) ) {
                        <p>
                        <?php
                        if ( $installerStarted ) {
-                               echo "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\"> complete the installation</a> and download LocalSettings.php.";
+                               echo "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\">complete the installation</a> and download LocalSettings.php.";
                        } else {
-                               echo "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\"> set up the wiki</a> first.";
+                               echo "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\">set up the wiki</a> first.";
                        }
                        ?>
                        </p>