diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-03 19:46:47 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-03 19:46:47 +0000 |
commit | 998a39940b27561d7a2e98b68c8929dab68fe62f (patch) | |
tree | 79e73eb7bd8ae843609a2f4f0a526377800430e1 /views/default/admin/plugins/simple.php | |
parent | 4b3749440c560da36b7deadcee65133062fd10a1 (diff) | |
download | elgg-998a39940b27561d7a2e98b68c8929dab68fe62f.tar.gz elgg-998a39940b27561d7a2e98b68c8929dab68fe62f.tar.bz2 |
Refs #1320. Updated core to use elgg_echo()'s native string replacement.
git-svn-id: http://code.elgg.org/elgg/trunk@7227 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/plugins/simple.php')
-rw-r--r-- | views/default/admin/plugins/simple.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/admin/plugins/simple.php b/views/default/admin/plugins/simple.php index 017c6e7fe..9b9897944 100644 --- a/views/default/admin/plugins/simple.php +++ b/views/default/admin/plugins/simple.php @@ -45,11 +45,11 @@ foreach ($plugin_list as $name => $info) { $author = $link = $version = $settings = ''; if (isset($manifest['author'])) { - $author = sprintf(elgg_echo('admin:plugins:author'), $manifest['author']); + $author = elgg_echo('admin:plugins:author', array($manifest['author'])); } if (isset($manifest['version'])) { - $version = ' | ' . sprintf(elgg_echo('admin:plugins:version'), $manifest['version']); + $version = ' | ' . elgg_echo('admin:plugins:version', array($manifest['version'])); } if (isset($manifest['website'])) { |