summaryrefslogtreecommitdiff
path: root/includes/WatchedItem.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2008-08-15 01:29:47 +0200
committerPierre Schmitz <pierre@archlinux.de>2008-08-15 01:29:47 +0200
commit370e83bb0dfd0c70de268c93bf07ad5ee0897192 (patch)
tree491674f4c242e4d6ba0d04eafa305174c35a3391 /includes/WatchedItem.php
parentf4debf0f12d0524d2b2427c55ea3f16b680fad97 (diff)
Update auf 1.13.0
Diffstat (limited to 'includes/WatchedItem.php')
-rw-r--r--includes/WatchedItem.php13
1 files changed, 5 insertions, 8 deletions
diff --git a/includes/WatchedItem.php b/includes/WatchedItem.php
index e4de67c8..23fc6a74 100644
--- a/includes/WatchedItem.php
+++ b/includes/WatchedItem.php
@@ -1,10 +1,11 @@
<?php
/**
- *
+ * @file
+ * @ingroup Watchlist
*/
/**
- *
+ * @ingroup Watchlist
*/
class WatchedItem {
var $mTitle, $mUser;
@@ -114,8 +115,8 @@ class WatchedItem {
* Check if the given title already is watched by the user, and if so
* add watches on a new title. To be used for page renames and such.
*
- * @param Title $ot Page title to duplicate entries from, if present
- * @param Title $nt Page title to add watches on
+ * @param $ot Title: page title to duplicate entries from, if present
+ * @param $nt Title: page title to add watches on
*/
static function duplicateEntries( $ot, $nt ) {
WatchedItem::doDuplicateEntries( $ot->getSubjectPage(), $nt->getSubjectPage() );
@@ -156,8 +157,4 @@ class WatchedItem {
$dbw->replace( 'watchlist', array(array( 'wl_user', 'wl_namespace', 'wl_title')), $values, $fname );
return true;
}
-
-
}
-
-