Closed (works as designed)
Project:
Webform
Version:
7.x-4.0-alpha6
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Jan 2013 at 22:49 UTC
Updated:
21 Nov 2016 at 14:14 UTC
Jump to comment: Most recent
Comments
Comment #1
vishy_singhal commentedFixed this issue.
Go to your include/menu.inc file and replace the function with the following
Comment #2
akoepke commentedEditing a core Drupal file is never the right answer to any question. Don't touch.
If you think you have found a bug in core file an issue / bug report and post a patch.
There will most likely be an underlying cause of this issue and the error you are seeing is just a symptom of that. Often it is because some module has not completed all the information that Drupal expects to have.
Comment #3
jn0x7a3 commentedI would like to know if this error has been fixed in Drupal 7.23.
Comment #4
lahode commentedNope, neither in Drupal 7.25
Comment #5
nehapandya05 commentedThese issue is because of your custom module where you implemented hook_menu and created custom menu link and write "access argument" , assigned value of access argument should be an array like 'access arguments' => array(' '),
Comment #6
danchadwick commentedThis appears to be unrelated to webform. If someone can demonstrate instructions to reproduce with webform, where a webform menu item is involved, please feel free to re-open.
Comment #7
slydevil commented#5 solved my issue.
Comment #8
Vamsee krishna commentedGot same warning #5 works for me
Comment #9
Vamsee krishna commentedGot same warning #5 works for me
Comment #10
iedesign commentedThe hook menu item seemed to be throwing the warning here. We got the same warning, using #5 worked for me. I changed
in my menu hook item to
and it removed the warning... not sure why though and this would mean that it would appear if I needed some access restriction.
Any one have an idea?
Comment #11
saurabh.rocksoul#5 working for me also.
Thanks nehapandya05
Comment #12
Mchraiet commentedFor me, I forgot the array part on 'page arguments' in my implementation of hook_menu().
This was:
'page arguments' => 'ajax_example_dependent_dropdown'It should be:
'page arguments' => array('ajax_example_dependent_dropdown')