Use db prefix!
[lhc/web/wiklou.git] / trackback.php
index 726cacb..6d2d826 100644 (file)
@@ -4,18 +4,8 @@
  * @package MediaWiki
  * @subpackage SpecialPage
  */
+require_once( './includes/WebStart.php' );
 
-unset($IP);
-define('MEDIAWIKI', true);
-require_once('./includes/Defines.php');
-
-if (!file_exists('LocalSettings.php'))
-       exit;
-
-require_once('./LocalSettings.php');
-require_once('includes/Setup.php');
-
-require_once('Title.php');
 require_once('DatabaseFunctions.php');
 
 /**
@@ -60,16 +50,17 @@ $tbname = $_POST['blog_name'];
 $tbarticle = $_REQUEST['article'];
 
 $title = Title::newFromText($tbarticle);
-if (!$title->exists())
+if (!isset($title) || !$title->exists())
        XMLerror("Specified article does not exist.");
 
 $dbw->insert('trackbacks', array(
-       'tb_id' => $title->getArticleID(),
-       'tb_title' => $tbtitle,
-       'tb_url' => $tburl,
-       'tb_ex' => $tbex,
-       'tb_name' => $tbname
+       'tb_page'       => $title->getArticleID(),
+       'tb_title'      => $tbtitle,
+       'tb_url'        => $tburl,
+       'tb_ex'         => $tbex,
+       'tb_name'       => $tbname
 ));
 
 XMLsuccess();
 exit;
+?>