Closed (fixed)
Project:
Drupal core
Version:
7.x-dev
Component:
menu system
Priority:
Minor
Category:
Bug report
Assigned:
Issue tags:
Reporter:
Created:
20 Oct 2009 at 03:23 UTC
Updated:
3 Jan 2014 at 00:29 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
lisarex commentedSee also #620592: Taxonomy admin page ... need feedback when saving. The issues are identical.
Comment #2
sivaji_ganesh_jojodae commentedAttached patch provides appropriate status message when you add or edit a menu or menu item.
Comment #3
dries commentedCan we simplify the message and make it consistent with #620592: Taxonomy admin page ... need feedback when saving?
Comment #4
sivaji_ganesh_jojodae commentedThat sounds good. I had the same thought when i am rolling this patch, but other status messages in the menu module is using something similar to "The new menu %name has been created". Anyways i will roll it again.
Comment #5
sivaji_ganesh_jojodae commentedAttached patch simplifies the status message and makes it consistent with #620592: Taxonomy admin page ... need feedback when saving.
Comment #6
sivaji_ganesh_jojodae commentedComment #8
sivaji_ganesh_jojodae commentedAttached patch should work
Comment #11
baronmunchowsen commentedI applied the patch in #8 and created a link from admin/structure/menu/manage/management and got a feedback message 'Created new menu link Test Link.', so it seems to work . I have not reviewed the PHP code. I also noticed that in the menu.test file that some of the UI text strings were inconsistent - some with periods ('.'), some without. Not sure if this is a concern or not, or deserving of its own issue.
Comment #12
flickerfly commentedI applied the patch in #8 and it was grumpy.
Comment #13
sivaji_ganesh_jojodae commentedAttached patch should work.
Comment #14
flickerfly commented#13 applied properly and provided a message saying that menu items had changed when saved. It checks out nicely for me.
Comment #15
webchickHey, thanks for this. Unfortunately, we're not making any more non-critical changes to the user interface text this release. :( Bumping to Drupal 8.
Comment #16
sivaji_ganesh_jojodae commentedI don't think it is good to leave this bug open for UI text freeze. I agree that #13 makes unwanted checks and UI text changes. Attached patch will fix this bug just by adding three
drupal_set_message(t('Your configuration has been saved.'));inmenu_foo_bar_submit(). I am sure its worth adding this now.For Testing
1. Go to List menu links page eg. admin/structure/menu/manage/user-menu
2. Go to menu item edit page eg. admin/structure/menu/item/28/edit
3. Go to menu description edit page eg. admin/structure/menu/manage/user-menu/edit
Submitting menu form in any of the above pages should display
drupal_set_message(t('Your configuration has been saved.'));message.Comment #17
ghills88 commentedPatch file from #16 applies cleanly to CVS HEAD for me and has the desired effect. Those different edit pages all show a message when the configuration changes are saved where they did not before.
Comment #18
joachim commentedSame here.
RTBC :)
Comment #19
yoroy commentedI did notice this lack of feedback on certain admin pages, too. Definitely worth fixing for D7.
Comment #20
sivaji_ganesh_jojodae commented@yoroy That's true, One of the admin pages i recently noticed is reported here #787684: Role admin page should say something when you save hope someone here will have time to put some effort.
Comment #21
dries commentedCommitted to CVS HEAD. Thanks.