diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-20 18:26:41 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-08-20 18:26:41 +0000 |
commit | 6eaaa3c1b3779aa4a965232c97eb167f749ed09b (patch) | |
tree | 6578f22257d34c791efcda88ec9f031ce94d858a /modules/system | |
parent | ced08bf27a5c5dec209e2818b162bcf6ed80848b (diff) | |
download | brdo-6eaaa3c1b3779aa4a965232c97eb167f749ed09b.tar.gz brdo-6eaaa3c1b3779aa4a965232c97eb167f749ed09b.tar.bz2 |
#160168 by kkaefer and pwolanin: restore lost Drupal 5 functionality of being able to set primary and secondary links differently
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index e0152b5f1..460780709 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1069,7 +1069,9 @@ function system_theme_default() { 'name', 'node_user_picture', 'search', - 'slogan' + 'slogan', + 'primary_links', + 'secondary_links', ), 'stylesheets' => array( 'all' => array('style.css') @@ -2365,7 +2367,9 @@ function system_theme_settings(&$form_state, $key = '') { 'node_user_picture' => t('User pictures in posts'), 'comment_user_picture' => t('User pictures in comments'), 'search' => t('Search box'), - 'favicon' => t('Shortcut icon') + 'favicon' => t('Shortcut icon'), + 'primary_links' => t('Primary links'), + 'secondary_links' => t('Secondary links'), ); // Some features are not always available |