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
$func($a, $data);
} else {
q("DELETE FROM hook WHERE hook = '%s' AND file = '%s' AND fn = '%s'",
dbesc($name),
dbesc($hook[0]),
dbesc($origfn)
);
// The hook should be removed so we don't process it.
// But not until everybody gets through a timing issue
// related to git pull and update_r1169
// q("DELETE FROM hook WHERE hook = '%s' AND file = '%s' AND fn = '%s'",
// dbesc($name),
// dbesc($hook[0]),
// dbesc($origfn)
// );
}
}
}