diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-05 09:15:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-05 09:15:02 +0000 |
commit | c4d170c96170ec01606ae00ef28c308556acef8d (patch) | |
tree | 3c76b153da15e101a2dd8a93b1ad3e60fa67cfe2 /modules/menu/menu.install | |
parent | 20b0af0b53b56ef43e3c3dccfd106b853468a441 (diff) | |
download | brdo-c4d170c96170ec01606ae00ef28c308556acef8d.tar.gz brdo-c4d170c96170ec01606ae00ef28c308556acef8d.tar.bz2 |
- Patch #147656 by pwolanin and chx: menu module update for Drupal 6.
Diffstat (limited to 'modules/menu/menu.install')
-rw-r--r-- | modules/menu/menu.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/menu/menu.install b/modules/menu/menu.install index 6d113a849..be397cdfe 100644 --- a/modules/menu/menu.install +++ b/modules/menu/menu.install @@ -8,8 +8,8 @@ function menu_install() { // Create tables. drupal_install_schema('menu'); db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('navigation', 'Navigation', 'The navigation menu is provided by Drupal and is the main interactive menu for any site. It is usually the only menu that contains personalized links for authenticated users, and is often not even visible to anonymous users.')"); - db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('primary_links', 'Primary links', 'Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.')"); - db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('secondary_links', 'Secondary links', 'Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links')"); + db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('primary-links', 'Primary links', 'Primary links are often used at the theme layer to show the major sections of a site. A typical representation for primary links would be tabs along the top.')"); + db_query("INSERT INTO {menu_custom} (menu_name, title, description) VALUES ('secondary-links', 'Secondary links', 'Secondary links are often used for pages like legal notices, contact details, and other secondary navigation items that play a lesser role than primary links')"); } /** |