]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
A bit more readable code.
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 18 Jan 2015 00:43:30 +0000 (01:43 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 18 Jan 2015 00:43:30 +0000 (01:43 +0100)
lib/action.php

index f3a125d3b5556732d1763e7a82c134cb1c72347e..fb71d3073fac1f1afd34c6b6fd242efb844082c3 100644 (file)
@@ -1167,11 +1167,9 @@ class Action extends HTMLOutputter // lawsuit
                 // TRANS: license message in footer.
                 // TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
                 $notice = _('All %1$s content and data are available under the %2$s license.');
-                $link = "<a class=\"license\" rel=\"external license\" href=\"" .
-                        htmlspecialchars(common_config('license', 'url')) .
-                        "\">" .
-                        htmlspecialchars(common_config('license', 'title')) .
-                        "</a>";
+                $link = sprintf('<a class="license" rel="external license" href="%1$s">%2$s</a>',
+                                htmlspecialchars(common_config('license', 'url')),
+                                htmlspecialchars(common_config('license', 'title')));
                 $this->raw(sprintf(htmlspecialchars($notice),
                                    htmlspecialchars(common_config('site', 'name')),
                                    $link));