summaryrefslogtreecommitdiffstats
path: root/modules-available/main/hooks/translation.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/main/hooks/translation.inc.php')
-rw-r--r--modules-available/main/hooks/translation.inc.php17
1 files changed, 1 insertions, 16 deletions
diff --git a/modules-available/main/hooks/translation.inc.php b/modules-available/main/hooks/translation.inc.php
index c831cbfd..03fa5f79 100644
--- a/modules-available/main/hooks/translation.inc.php
+++ b/modules-available/main/hooks/translation.inc.php
@@ -6,7 +6,7 @@ $HANDLER = array();
* List of valid subsections
*/
$HANDLER['subsections'] = array(
- 'categories', 'global-tags'
+ 'global-tags'
);
/*
@@ -15,21 +15,6 @@ $HANDLER['subsections'] = array(
*/
/**
- * Configuration categories
- */
-$HANDLER['grep_categories'] = function($module) {
- $skip = strlen($module->getIdentifier()) + 1;
- $want = array();
- foreach (Module::getAll() as $module) {
- $cat = $module->getCategory();
- if (is_string($cat)) {
- $want[substr($cat, $skip)] = true;
- }
- }
- return $want;
-};
-
-/**
* Global tags.
* This just returns the union of global tags of all languages, as there is no
* way to define a definite set of required global tags.