mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
also handle and fix directories connected to itself like unconnected ones --> move to /lost+found
This commit is contained in:
parent
db9546afdb
commit
37a9711b19
@ -355,12 +355,12 @@ class Utils extends StreamWrapper
|
|||||||
const LOST_N_FOUND_GRP = 'Admins';
|
const LOST_N_FOUND_GRP = 'Admins';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check and optionally fix unconnected nodes - parent directory does not (longer) exists:
|
* Check and optionally fix unconnected nodes - parent directory does no (longer) exists or connected to itself:
|
||||||
*
|
*
|
||||||
* SELECT fs.*
|
* SELECT fs.*
|
||||||
* FROM egw_sqlfs fs
|
* FROM egw_sqlfs fs
|
||||||
* LEFT JOIN egw_sqlfs dir ON dir.fs_id=fs.fs_dir
|
* LEFT JOIN egw_sqlfs dir ON dir.fs_id=fs.fs_dir
|
||||||
* WHERE fs.fs_id > 1 && dir.fs_id IS NULL
|
* WHERE fs.fs_id > 1 AND (dir.fs_id IS NULL OR fs.fs_id=fs.fs_dir)
|
||||||
*
|
*
|
||||||
* @param boolean $check_only =true
|
* @param boolean $check_only =true
|
||||||
* @return array with messages / found problems
|
* @return array with messages / found problems
|
||||||
@ -374,7 +374,7 @@ class Utils extends StreamWrapper
|
|||||||
$offset = 0;
|
$offset = 0;
|
||||||
$stmt = self::$pdo->prepare('SELECT fs.* FROM ' . self::TABLE . ' fs' .
|
$stmt = self::$pdo->prepare('SELECT fs.* FROM ' . self::TABLE . ' fs' .
|
||||||
' LEFT JOIN ' . self::TABLE . ' dir ON dir.fs_id=fs.fs_dir' .
|
' LEFT JOIN ' . self::TABLE . ' dir ON dir.fs_id=fs.fs_dir' .
|
||||||
" WHERE fs.fs_id > 1 AND dir.fs_id IS NULL LIMIT $limit OFFSET :offset");
|
" WHERE fs.fs_id > 1 AND (dir.fs_id IS NULL OR fs.fs_id=fs.fs_dir) LIMIT $limit OFFSET :offset");
|
||||||
$stmt->setFetchMode(PDO::FETCH_ASSOC);
|
$stmt->setFetchMode(PDO::FETCH_ASSOC);
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user