From dcd152a83fd256a88fba7ae0a01587dfd1783889 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 21 Mar 2008 23:55:27 +0000 Subject: [PATCH] * (bug 6447) Trackbacks now work with transactional tables, if enabled --- RELEASE-NOTES | 1 + trackback.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index fe91194655..88dbb7551a 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -120,6 +120,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 1953) Search form now honors namespace selections more reliably * (bug 12294) Namespace class renamed to MWNamespace for PHP 5.3 compatibility * PHP 5.3 compatibility fix for wfRunHooks() called with no parameters +* (bug 6447) Trackbacks now work with transactional tables, if enabled === API changes in 1.13 === diff --git a/trackback.php b/trackback.php index d9c515695f..398503098c 100644 --- a/trackback.php +++ b/trackback.php @@ -58,7 +58,8 @@ $dbw->insert('trackbacks', array( 'tb_ex' => $tbex, 'tb_name' => $tbname )); +$dbw->commit(); XMLsuccess(); -exit; + ?> -- 2.20.1