From: Zach Copley Date: Mon, 11 Jan 2010 23:21:09 +0000 (+0000) Subject: Fix format specifier on page title X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=3a9e24e07738e9dd57cf8100610728bb1e2b789c;p=quix0rs-gnu-social.git Fix format specifier on page title --- diff --git a/lib/action.php b/lib/action.php index 6efa9163dc..a521bcb507 100644 --- a/lib/action.php +++ b/lib/action.php @@ -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'))); }