diff options
author | Brion Vibber <brion@pobox.com> | 2010-10-04 14:24:04 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-10-04 14:24:04 -0700 |
commit | d6b3d7fb1a7a3dca701dfe5cf95a832b3eb055f9 (patch) | |
tree | 13c9e4094618de5d5314f553c619806772ce68f5 /plugins/Mapstraction/allmap.php | |
parent | 2295bbec9ea1e279316b8a45b6b05c6d71a6fc3d (diff) |
Fix unescaped dollar signs in double-quoted strings due to localization updates (%1$s etc)
Diffstat (limited to 'plugins/Mapstraction/allmap.php')
-rw-r--r-- | plugins/Mapstraction/allmap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Mapstraction/allmap.php b/plugins/Mapstraction/allmap.php index fa05ccc7a..6e2e1d122 100644 --- a/plugins/Mapstraction/allmap.php +++ b/plugins/Mapstraction/allmap.php @@ -77,7 +77,7 @@ class AllmapAction extends MapAction // @todo CHECKME: does this even happen? May not be needed. // TRANS: Page title. // TRANS: %1$s is a user nickname, %2$d is a page number. - return sprintf(_m("%1$s friends map, page %2$d"), + return sprintf(_m('%1$s friends map, page %2$d'), $base, $this->page); } |