don't remove missing hooks while update_r1169 is happpening - temp fix

This commit is contained in:
redmatrix 2016-05-31 13:22:47 -07:00
parent ca78374f30
commit 701acf59e2

View File

@ -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)
// );
} }
} }
} }