// Fix bug on install

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9648 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2011-10-25 20:31:23 +00:00
parent 4fd262bd68
commit e5b32b6666
2 changed files with 4 additions and 3 deletions
+4 -2
View File
@@ -161,7 +161,8 @@ class ConfigurationTestCore
public static function test_dir($relative_dir, $recursive = false)
{
$dir = _PS_ROOT_DIR_.DIRECTORY_SEPARATOR.ltrim($relative_dir, '/');
$root_dir = dirname(dirname(__FILE__)); // @TODO FIXME
$dir = $root_dir.DIRECTORY_SEPARATOR.ltrim($relative_dir, '/');
if (!file_exists($dir) OR !$dh = opendir($dir))
return false;
$dummy = rtrim($dir, '/').'/'.uniqid();
@@ -186,7 +187,8 @@ class ConfigurationTestCore
public static function test_file($file_relative)
{
$file = _PS_ROOT_DIR_.DIRECTORY_SEPARATOR.$file_relative;
$root_dir = dirname(dirname(__FILE__)); // @TODO FIXME
$file = $root_dir.DIRECTORY_SEPARATOR.$file_relative;
return (file_exists($file) AND is_writable($file));
}