diff options
author | Zach Copley <zach@status.net> | 2010-01-11 23:21:09 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-11 23:21:09 +0000 |
commit | 3a9e24e07738e9dd57cf8100610728bb1e2b789c (patch) | |
tree | 863e141722d1074d9ab05697dc007277bb798d7e /lib/action.php | |
parent | 60d6d73fcad007d525c037f655c21fa774d75d2b (diff) |
Fix format specifier on page title
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index 6efa9163d..a521bcb50 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'))); } |