diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2008-06-04 14:07:38 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2008-06-04 14:07:38 +0100 |
| commit | ee4a98124e65d76c12bc09b4ad73be512d7baf29 (patch) | |
| tree | 8119114e2a3398d644de37728bba19515a1192ba | |
| parent | 004523dda5b91a641b278498fc6172c06ec428b9 (diff) | |
update_rss_feed: properly close transaction when bailing out on filtered article (refs #210)
| -rw-r--r-- | functions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/functions.php b/functions.php index d255161dd..2f2e33df9 100644 --- a/functions.php +++ b/functions.php @@ -1154,6 +1154,7 @@ } if (find_article_filter($article_filters, "filter")) { + db_query($link, "COMMIT"); // close transaction in progress continue; } |