summaryrefslogtreecommitdiff
path: root/includes/SearchUpdate.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SearchUpdate.php')
-rw-r--r--includes/SearchUpdate.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/includes/SearchUpdate.php b/includes/SearchUpdate.php
index 849d6dc7..087a8ba5 100644
--- a/includes/SearchUpdate.php
+++ b/includes/SearchUpdate.php
@@ -1,7 +1,7 @@
<?php
/**
* See deferred.txt
- * @addtogroup Search
+ * @ingroup Search
*/
class SearchUpdate {
@@ -95,21 +95,19 @@ class SearchUpdate {
wfProfileOut( "$fname-regexps" );
wfRunHooks( 'SearchUpdate', array( $this->mId, $this->mNamespace, $this->mTitle, &$text ) );
-
+
# Perform the actual update
$search->update($this->mId, Title::indexTitle( $this->mNamespace, $this->mTitle ),
$text);
-
+
wfProfileOut( $fname );
}
}
/**
* Placeholder class
- * @addtogroup Search
+ * @ingroup Search
*/
class SearchUpdateMyISAM extends SearchUpdate {
# Inherits everything
}
-
-