don't remove missing hooks while update_r1169 is happpening - temp fix
This commit is contained in:
parent
ca78374f30
commit
701acf59e2
@ -301,11 +301,14 @@ function call_hooks($name, &$data = null) {
|
|||||||
else
|
else
|
||||||
$func($a, $data);
|
$func($a, $data);
|
||||||
} else {
|
} else {
|
||||||
q("DELETE FROM hook WHERE hook = '%s' AND file = '%s' AND fn = '%s'",
|
// The hook should be removed so we don't process it.
|
||||||
dbesc($name),
|
// But not until everybody gets through a timing issue
|
||||||
dbesc($hook[0]),
|
// related to git pull and update_r1169
|
||||||
dbesc($origfn)
|
// q("DELETE FROM hook WHERE hook = '%s' AND file = '%s' AND fn = '%s'",
|
||||||
);
|
// dbesc($name),
|
||||||
|
// dbesc($hook[0]),
|
||||||
|
// dbesc($origfn)
|
||||||
|
// );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user