From 3a9e24e07738e9dd57cf8100610728bb1e2b789c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 11 Jan 2010 23:21:09 +0000 Subject: [PATCH] Fix format specifier on page title --- lib/action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'))); }