From b9b85843572bf283f48285001e276ba7e61b63f6 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sun, 22 Feb 2009 13:37:51 +0100 Subject: updated to MediaWiki 1.14.0 --- trackback.php | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'trackback.php') diff --git a/trackback.php b/trackback.php index bcb63768..398cc794 100644 --- a/trackback.php +++ b/trackback.php @@ -4,14 +4,11 @@ * @file * @ingroup SpecialPage */ + require_once( './includes/WebStart.php' ); -require_once( './includes/DatabaseFunctions.php' ); -/** - * - */ function XMLsuccess() { - header("Content-Type: application/xml; charset=utf-8"); + header( "Content-Type: application/xml; charset=utf-8" ); echo " 0 @@ -20,9 +17,9 @@ function XMLsuccess() { exit; } -function XMLerror($err = "Invalid request.") { - header("HTTP/1.0 400 Bad Request"); - header("Content-Type: application/xml; charset=utf-8"); +function XMLerror( $err = "Invalid request." ) { + header( "HTTP/1.0 400 Bad Request" ); + header( "Content-Type: application/xml; charset=utf-8" ); echo " 1 @@ -32,14 +29,14 @@ function XMLerror($err = "Invalid request.") { exit; } -if (!$wgUseTrackbacks) +if( !$wgUseTrackbacks ) XMLerror("Trackbacks are disabled."); -if ( !isset($_POST['url']) - || !isset($_REQUEST['article'])) +if( !isset( $_POST['url'] ) + || !isset( $_REQUEST['article'] ) ) XMLerror("Required field not specified"); -$dbw = wfGetDB(DB_MASTER); +$dbw = wfGetDB( DB_MASTER ); $tbtitle = strval( @$_POST['title'] ); $tbex = strval( @$_POST['excerpt'] ); @@ -48,8 +45,8 @@ $tbname = strval( @$_POST['blog_name'] ); $tbarticle = strval( $_REQUEST['article'] ); $title = Title::newFromText($tbarticle); -if (!isset($title) || !$title->exists()) - XMLerror("Specified article does not exist."); +if( !$title || !$title->exists() ) + XMLerror( "Specified article does not exist." ); $dbw->insert('trackbacks', array( 'tb_page' => $title->getArticleID(), @@ -58,8 +55,7 @@ $dbw->insert('trackbacks', array( 'tb_ex' => $tbex, 'tb_name' => $tbname )); + $dbw->commit(); XMLsuccess(); - -?> -- cgit v1.2.2