Can you turn off the Floating Magnifying Glass and put the link under Tolls (or something) so that it’s can be properly managed by User Role Editors. We like the tool, but it’s annoying to have that icon floating everywhere and we do need the ability to restrict it’s access.
]]>My PHP logs are showing many instances of this error: “Warning: array_merge(): Argument #2 is not an array /MY/WORDPRESS/PATH/wp-content/plugins/admin-global-search/index.php on line 50”
So I changed the following code at line 50 of the plugin’s index.php…
$aVars = $aOpts ? array_merge($aParams,$aOpts) : $aParams;
…to…
$aVars = is_array($aOpts) ? array_merge($aParams,$aOpts) : $aParams;
That seems to have cleared it up, so feel free to use this in the next plugin update! (hopefully soon)
]]>