diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-20 22:35:39 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-20 22:35:39 +0000 |
commit | af78fa6193f7fec2bad09315aa1fb512d3c9a6fc (patch) | |
tree | ff597f8953de508e8e3ee948f4c66689e83fbf8c /install.php | |
parent | 251eeb05aba7ddb79afafd4143a5435fc368b0e7 (diff) |
Fix some language keys problems
Need translations !
git-svn-id: http://piwigo.org/svn/trunk@5207 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 8c09745cf..2f9832b60 100644 --- a/install.php +++ b/install.php @@ -267,7 +267,7 @@ if ( isset( $_POST['install'] )) if ( empty($webmaster)) array_push( $errors, l10n('enter a login for webmaster') ); else if ( preg_match( '/[\'"]/', $webmaster ) ) - array_push( $errors, l10n('webmaster login can\'t contain characters \' or \"') ); + array_push( $errors, l10n('webmaster login can\'t contain characters \' or "') ); if ( $admin_pass1 != $admin_pass2 || empty($admin_pass1) ) array_push( $errors, l10n('please enter your password again') ); if ( empty($admin_mail)) |