forked from extern/egroupware
allow apps to implement further fsck methods
This commit is contained in:
parent
71456ff8ef
commit
27748e4f50
@ -109,6 +109,13 @@ class sqlfs_utils extends sqlfs_stream_wrapper
|
||||
$msgs = array_merge($msgs, self::fsck_fix_unconnected($check_only));
|
||||
$msgs = array_merge($msgs, self::fsck_fix_no_content($check_only));
|
||||
|
||||
foreach ($GLOBALS['egw']->hooks->process(array(
|
||||
'location' => 'fsck',
|
||||
'check_only' => $check_only)
|
||||
) as $app => $app_msgs)
|
||||
{
|
||||
$msgs = array_merge($msgs, $app_msgs);
|
||||
}
|
||||
return $msgs;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user