diff options
author | momo-i <momo-i@ampache> | 2009-05-06 23:24:45 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2009-05-06 23:24:45 +0000 |
commit | 80cda9b7459105a62d0d33629f70b6c9b27680fd (patch) | |
tree | 34ba55ba3d2e29667828d803ac418dbd96e6c05c /admin | |
parent | d78aa27d48096fded15b0a04d206ccae18238ebb (diff) | |
download | ampache-80cda9b7459105a62d0d33629f70b6c9b27680fd.tar.gz ampache-80cda9b7459105a62d0d33629f70b6c9b27680fd.tar.bz2 ampache-80cda9b7459105a62d0d33629f70b6c9b27680fd.zip |
fix sprintf typo
Diffstat (limited to 'admin')
-rw-r--r-- | admin/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/users.php b/admin/users.php index d107e417..9e801ca5 100644 --- a/admin/users.php +++ b/admin/users.php @@ -126,7 +126,7 @@ switch ($_REQUEST['action']) { elseif ($access == 25){ $access = _('User');} elseif ($access == 100){ $access = _('Admin');} - show_confirmation(_('New User Added'),sprintf(_('%%user%% has been created with an access level of %s'), $access),'%user%',$username), Config::get('web_path').'/admin/users.php'); + show_confirmation(_('New User Added'),sprintf(_('%1$s has been created with an access level of %2$s'), $username, $access), Config::get('web_path').'/admin/users.php'); break; case 'enable': $client = new User($_REQUEST['user_id']); |