mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-28 20:40:24 +02:00
some language-specific adjustements
fix prune users (adding the list of users to the confirmation page) tried to fix the show/hide trigger in ACP by not using width: auto; (which gets somehow inherited to each other element) git-svn-id: file:///svn/phpbb/trunk@7455 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -2269,7 +2269,7 @@ function copy_dir($src, $trg, $copy_subdirs = true, $overwrite = false, $die_on_
|
||||
@chmod($trg_path, 0777);
|
||||
}
|
||||
|
||||
if (!is_writeable($trg_path))
|
||||
if (!@is_writable($trg_path))
|
||||
{
|
||||
$bad_dirs[] = path($config['script_path']) . $trg;
|
||||
}
|
||||
@@ -2336,7 +2336,7 @@ function copy_dir($src, $trg, $copy_subdirs = true, $overwrite = false, $die_on_
|
||||
@chmod($trg_path . $dir, 0777);
|
||||
}
|
||||
|
||||
if (!is_writeable($trg_path . $dir))
|
||||
if (!@is_writable($trg_path . $dir))
|
||||
{
|
||||
$bad_dirs[] = $trg . $dir;
|
||||
$bad_dirs[] = $trg_path . $dir;
|
||||
|
Reference in New Issue
Block a user