diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2005-12-30 17:16:47 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2005-12-30 17:16:47 +0100 |
| commit | bc2369382ccc3619c07c73f6f1b806946ab42bfa (patch) | |
| tree | fe95a08b5ba66c50695652fb0186074e4dcdbc96 /backend.php | |
| parent | 57d7223aee754323a6abcddd34ea58bfd02bfd5b (diff) | |
fix backend sanity failure (take 2)
Diffstat (limited to 'backend.php')
| -rw-r--r-- | backend.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/backend.php b/backend.php index e4dd4fea1..3578871e6 100644 --- a/backend.php +++ b/backend.php @@ -748,7 +748,9 @@ } if ($subop == "sanityCheck") { - sanity_check($link); + if (sanity_check($link)) { + print "<error error-code=\"0\"/>"; + } } if ($subop == "globalPurge") { |