aboutsummaryrefslogtreecommitdiffstats
path: root/register.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-05-15 20:26:56 +0000
committerrub <rub@piwigo.org>2007-05-15 20:26:56 +0000
commit35858a70a0b9518d3395b4a0883381b8804281cd (patch)
tree5ef6f0715d93b81592dbbb4b2894d7bfe14c8004 /register.php
parentb0e92b7df1b0fe8f07b73e80364ce69a391b5f6a (diff)
Replace some $lang by l10n
Merge BSF 2013:2014 into branch-1_7 git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2015 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'register.php')
-rw-r--r--register.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/register.php b/register.php
index 74980a156..eed28b847 100644
--- a/register.php
+++ b/register.php
@@ -45,7 +45,7 @@ if (isset($_POST['submit']))
{
if ($_POST['password'] != $_POST['password_conf'])
{
- array_push($errors, $lang['reg_err_pass']);
+ array_push($errors, l10n('reg_err_pass'));
}
$errors =
@@ -91,7 +91,7 @@ $email = !empty($_POST['mail_address'])?$_POST['mail_address']:'';
//
// Start output of page
//
-$title= $lang['register_page_title'];
+$title= l10n('register_page_title');
$page['body_id'] = 'theRegisterPage';
include(PHPWG_ROOT_PATH.'include/page_header.php');