* (bug 6447) Trackbacks now work with transactional tables, if enabled
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 21 Mar 2008 23:55:27 +0000 (23:55 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 21 Mar 2008 23:55:27 +0000 (23:55 +0000)
RELEASE-NOTES
trackback.php

index fe91194..88dbb75 100644 (file)
@@ -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 ===
index d9c5156..3985030 100644 (file)
@@ -58,7 +58,8 @@ $dbw->insert('trackbacks', array(
        'tb_ex'         => $tbex,
        'tb_name'       => $tbname
 ));
+$dbw->commit();
 
 XMLsuccess();
-exit;
+
 ?>