From 2f73293a9c96e6b61ff68955a65047718dc4dd15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Manuel=20G=C3=B3mez=20Senovilla?= Date: Mon, 19 Sep 2005 12:30:58 +0000 Subject: [PATCH] missing lang('not') in previous patch --- setup/check_install.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup/check_install.php b/setup/check_install.php index 874b77a942..572919d167 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -274,22 +274,22 @@ if (isset($args['is_readable'])) { $checks[] = lang('readable by the webserver'); - $check_not = (!$args['is_readable']?'not ':''); + $check_not = (!$args['is_readable']?lang('not'):''); } if (isset($args['is_writable'])) { $checks[] = lang('writable by the webserver'); - $check_not = (!$args['is_writable']?'not ':''); + $check_not = (!$args['is_writable']?lang('not'):''); } if (isset($args['is_world_readable'])) { $checks[] = lang('world readable'); - $check_not = (!$args['is_world_readable']?lang('not').' ':''); + $check_not = (!$args['is_world_readable']?lang('not'):''); } if (isset($args['is_world_writable'])) { $checks[] = lang('world writable'); - $check_not = (!$args['is_world_writable']?lang('not').' ':''); + $check_not = (!$args['is_world_writable']?lang('not'):''); } $checks = implode(', ',$checks);