aboutsummaryrefslogtreecommitdiffstats
path: root/include/plugin.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-31 16:16:54 -0700
committerredmatrix <git@macgirvin.com>2016-05-31 16:16:54 -0700
commit00b4843425371e4ff55c82be577a279e248c29fc (patch)
tree8294725983c67e3eb82314a127ac646b88a222eb /include/plugin.php
parent701acf59e2b2264f7afec9fdfab4d554193fd0b3 (diff)
downloadvolse-hubzilla-00b4843425371e4ff55c82be577a279e248c29fc.tar.gz
volse-hubzilla-00b4843425371e4ff55c82be577a279e248c29fc.tar.bz2
volse-hubzilla-00b4843425371e4ff55c82be577a279e248c29fc.zip
provide a sort of mutex lock around db logging so it can't possibly recurse. Previous attempts to do something similar using other methods haven't worked out satisfactorily.
Diffstat (limited to 'include/plugin.php')
-rwxr-xr-xinclude/plugin.php21
1 files changed, 12 insertions, 9 deletions
diff --git a/include/plugin.php b/include/plugin.php
index 96ae0e543..be4e92f03 100755
--- a/include/plugin.php
+++ b/include/plugin.php
@@ -300,15 +300,18 @@ function call_hooks($name, &$data = null) {
$func($data);
else
$func($a, $data);
- } else {
- // 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)
- // );
+ }
+ else {
+
+ // Don't do any DB write calls if we're currently logging a possibly failed DB call.
+ if(! DBA::$logging) {
+ // The hook should be removed so we don't process it.
+ q("DELETE FROM hook WHERE hook = '%s' AND file = '%s' AND fn = '%s'",
+ dbesc($name),
+ dbesc($hook[0]),
+ dbesc($origfn)
+ );
+ }
}
}
}