Drupal6-修复菜单链接,您可以通过SQL将它们重置为删除来删除它们
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal6-修复菜单链接,您可以通过SQL将它们重置为删除来删除它们相关的知识,希望对你有一定的参考价值。
Used the first sql statement to find your menu item. (Replace menu-% with the name of your menu eg. "primary-links" .Then using the menu item id fix the items you want to regain the good old delete button on the menu item.
/*Step 1 replace menu-% with your menu name*/ SELECT * FROM `menu_links` WHERE menu_name LIKE 'menu-%' AND module <> 'menu'; /*Step 2 - replace mlid number with number of your item*/ UPDATE menu_links SET module = 'menu' WHERE mlid LIKE '4078';
以上是关于Drupal6-修复菜单链接,您可以通过SQL将它们重置为删除来删除它们的主要内容,如果未能解决你的问题,请参考以下文章