diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/installation/install/forms/template.php | 4 | ||||
-rw-r--r-- | views/installation/page_shells/default.php | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/views/installation/install/forms/template.php b/views/installation/install/forms/template.php index a2d93f42e..98cdcadab 100644 --- a/views/installation/install/forms/template.php +++ b/views/installation/install/forms/template.php @@ -11,8 +11,8 @@ $type = $vars['type']; $form_body = ''; foreach ($variables as $field => $params) { - $label = elgg_echo("installation:$type:label:$field"); - $help = elgg_echo("installation:$type:help:$field"); + $label = elgg_echo("install:$type:label:$field"); + $help = elgg_echo("install:$type:help:$field"); $params['internalname'] = $field; $form_body .= '<p>'; diff --git a/views/installation/page_shells/default.php b/views/installation/page_shells/default.php index b023197fa..e19f90390 100644 --- a/views/installation/page_shells/default.php +++ b/views/installation/page_shells/default.php @@ -12,6 +12,9 @@ * @uses $vars['sysmessages'] Array of system status messages */ +$title = elgg_echo('install:title'); +$title .= " : {$vars['title']}"; + // we won't trust server configuration but specify utf-8 header('Content-type: text/html; charset=utf-8'); @@ -24,7 +27,7 @@ header('Expires: Fri, 05 Feb 1982 00:00:00 -0500', TRUE); <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <title>Elgg Install : <?php echo $vars['title']; ?></title> + <title><?php echo $title; ?></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="SHORTCUT ICON" href="<?php echo $vars['url']; ?>_graphics/favicon.ico" /> <link rel="stylesheet" href="<?php echo $vars['url']; ?>install/install.css" type="text/css" /> |