aboutsummaryrefslogtreecommitdiffstats
path: root/password.php
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2013-10-19 11:04:11 +0000
committermistic100 <mistic@piwigo.org>2013-10-19 11:04:11 +0000
commit2f08283864615990a47ef8b3995ab88402eda478 (patch)
tree6720eff124c37c877910cc25296958ebc1015cb9 /password.php
parent139ffe3712b8c9a9ea4cd731d3fdb509463867dc (diff)
feature 2978: remove useless sprintf in the core
git-svn-id: http://piwigo.org/svn/trunk@25005 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'password.php')
-rw-r--r--password.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/password.php b/password.php
index f242d48b5..6b0221fac 100644
--- a/password.php
+++ b/password.php
@@ -84,8 +84,8 @@ function process_password_request()
{
array_push(
$page['errors'],
- sprintf(
- l10n('User "%s" has no email address, password reset is not possible'),
+ l10n(
+ 'User "%s" has no email address, password reset is not possible',
$userdata['username']
)
);
@@ -108,8 +108,8 @@ function process_password_request()
set_make_full_url();
$message = l10n('Someone requested that the password be reset for the following user account:') . "\r\n\r\n";
- $message.= sprintf(
- l10n('Username "%s" on gallery %s'),
+ $message.= l10n(
+ 'Username "%s" on gallery %s',
$userdata['username'],
get_gallery_home_url()
);