diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-08-15 01:29:47 +0200 |
commit | 370e83bb0dfd0c70de268c93bf07ad5ee0897192 (patch) | |
tree | 491674f4c242e4d6ba0d04eafa305174c35a3391 /includes/WatchedItem.php | |
parent | f4debf0f12d0524d2b2427c55ea3f16b680fad97 (diff) |
Update auf 1.13.0
Diffstat (limited to 'includes/WatchedItem.php')
-rw-r--r-- | includes/WatchedItem.php | 13 |
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; } - - } - - |