summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-25 10:07:19 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-25 10:07:19 +0000
commitd55daf0fc49a53f5bc3ff35b7fa1c1c7ce628835 (patch)
tree13fcc4ced046c310fe49f9141c7595da894c3aad /modules/system
parent966fbe55492c4f0556045cfba5161b287faa1848 (diff)
downloadbrdo-d55daf0fc49a53f5bc3ff35b7fa1c1c7ce628835.tar.gz
brdo-d55daf0fc49a53f5bc3ff35b7fa1c1c7ce628835.tar.bz2
- Patch #557792 by Gábor Hojtsy: created 'web services' category.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 39ab7b0b8..0fa637dee 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -787,6 +787,14 @@ function system_menu() {
'access arguments' => array('admin/config/services', 'access administration pages'),
'file' => 'system.admin.inc',
);
+ $items['admin/config/services/rss-publishing'] = array(
+ 'title' => 'RSS publishing',
+ 'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
+ 'page callback' => 'drupal_get_form',
+ 'page arguments' => array('system_rss_feeds_settings'),
+ 'access arguments' => array('administer site configuration'),
+ 'file' => 'system.admin.inc',
+ );
$items['admin/settings/performance'] = array(
'title' => 'Performance',
'description' => 'Enable or disable page caching for anonymous users and set CSS and JS bandwidth optimization options.',
@@ -863,14 +871,6 @@ function system_menu() {
'access arguments' => array('administer site configuration'),
'file' => 'system.admin.inc',
);
- $items['admin/settings/rss-publishing'] = array(
- 'title' => 'RSS publishing',
- 'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('system_rss_feeds_settings'),
- 'access arguments' => array('administer site configuration'),
- 'file' => 'system.admin.inc',
- );
// Reports.
$items['admin/reports'] = array(