diff options
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index 9c52aad3..4ed840b5 100644 --- a/install.php +++ b/install.php @@ -87,7 +87,7 @@ switch ($_REQUEST['action']) { $charset = $_REQUEST['charset']; // Test and make sure that the values they give us actually work if (!check_database($hostname,$username,$password)) { - Error::add('config',_('Error: Unable to make Database Connection') . mysql_error()); + Error::add('config', T_('Error: Unable to make Database Connection') . mysql_error()); } // Was download pressed? @@ -175,7 +175,7 @@ switch ($_REQUEST['action']) { /* Make sure we've got a valid config file */ if (!check_config_values($results)) { - Error::add('general',_('Error: Config file not found or Unreadable')); + Error::add('general', T_('Error: Config file not found or Unreadable')); require_once Config::get('prefix') . '/templates/show_install_config.inc.php'; break; } |