1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 10:44:20 +02:00

- fix some convertor bugs.

- added support for the validated birthday mod and fixed the integration of nils' birthday mod


git-svn-id: file:///svn/phpbb/trunk@6851 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-01-07 14:08:47 +00:00
parent 09ce0caad6
commit 3c352ba4ef
7 changed files with 131 additions and 34 deletions

View File

@@ -444,7 +444,7 @@ function import_avatar_gallery($gallery_name = '', $subdirs_as_galleries = false
{
while ($entry = readdir($handle))
{
if ($entry[0] == '.')
if ($entry[0] == '.' || $entry == 'CVS' || $entry == 'index.htm')
{
continue;
}
@@ -460,7 +460,7 @@ function import_avatar_gallery($gallery_name = '', $subdirs_as_galleries = false
{
while ($entry = $dir->read())
{
if (substr($entry, 0, 1) == '.')
if ($entry[0] == '.' || $entry == 'CVS' || $entry == 'index.htm')
{
continue;
}
@@ -2173,7 +2173,7 @@ function copy_dir($src, $trg, $copy_subdirs = true, $overwrite = false, $die_on_
{
while ($entry = readdir($handle))
{
if ($entry[0] == '.')
if ($entry[0] == '.' || $entry == 'CVS' || $entry == 'index.htm')
{
continue;
}
@@ -2193,7 +2193,7 @@ function copy_dir($src, $trg, $copy_subdirs = true, $overwrite = false, $die_on_
{
while ($entry = $dir->read())
{
if (substr($entry, 0, 1) == '.')
if ($entry[0] == '.' || $entry == 'CVS' || $entry == 'index.htm')
{
continue;
}