]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix format specifier on page title
authorZach Copley <zach@status.net>
Mon, 11 Jan 2010 23:21:09 +0000 (23:21 +0000)
committerZach Copley <zach@status.net>
Mon, 11 Jan 2010 23:21:09 +0000 (23:21 +0000)
lib/action.php

index 6efa9163dc65550239db89c52d439f00e7af194b..a521bcb50745516fc279a8989e606485b9eb6be7 100644 (file)
@@ -141,7 +141,7 @@ class Action extends HTMLOutputter // lawsuit
     function showTitle()
     {
         $this->element('title', null,
-                       sprintf(_("%1$s - %2$s"),
+                       sprintf(_("%1\$s - %2\$s"),
                                $this->title(),
                                common_config('site', 'name')));
     }