Fix r4592

This commit is contained in:
Alan Garcia 2014-01-10 13:35:41 +00:00
parent c318efda56
commit 5ca62b0a42
1 changed files with 7 additions and 1 deletions

View File

@ -68,7 +68,13 @@ if (! file_put_contents(ALTERNC_VHOST_FILE, $conf2) ) {
}
// Update the database to inform that we did the job
array_walk_recursive($todo, 'm_dom::subdomain_modif_are_done');
foreach ( $todo as $taction=>$tlist){
foreach ($tlist as $ttype) {
foreach($ttype as $tid) {
$dom->subdomain_modif_are_done($tid, $taction);
}
}
}
// Hooks !
foreach (array('DELETE', 'CREATE', 'UPDATE', 'ENABLE', 'DISABLE') as $y) {