summaryrefslogtreecommitdiff
path: root/trackback.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2007-05-16 20:58:53 +0000
committerPierre Schmitz <pierre@archlinux.de>2007-05-16 20:58:53 +0000
commitcecb985bee3bdd252e1b8dc0bd500b37cd52be01 (patch)
tree17266aa237742640aabee7856f0202317a45d540 /trackback.php
parent0bac06c301f2a83edb0236e4c2434da16848d549 (diff)
Aktualisierung auf MediaWiki 1.10.0
Plugins angepasst und verbessert kleine Korrekturen am Design
Diffstat (limited to 'trackback.php')
-rw-r--r--trackback.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/trackback.php b/trackback.php
index 6e4ee982..ba8aa078 100644
--- a/trackback.php
+++ b/trackback.php
@@ -1,12 +1,10 @@
<?php
/**
* Provide functions to handle article trackbacks.
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
*/
require_once( './includes/WebStart.php' );
-
-require_once('DatabaseFunctions.php');
+require_once( './includes/DatabaseFunctions.php' );
/**
*
@@ -43,7 +41,7 @@ if ( !isset($_POST['url'])
|| !isset($_REQUEST['article']))
XMLerror("Required field not specified");
-$dbw =& wfGetDB(DB_MASTER);
+$dbw = wfGetDB(DB_MASTER);
$tbtitle = $_POST['title'];
$tbex = $_POST['excerpt'];