Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I've been struggling with this for the whole evening with no success :/
Briefly what I want to do in the bigger picture: I'm creating a module allowing users to search through some data. By default, it shows all data, but there's also a form that enables them to narrow the results. The form function is named hotFriendly_view_form.
The problem: after the user submits the form, $_POST array is empty if I call that form generating function (hotFriendly_view_form() ).
I've cobbled together a site-wide RSS feed, adding it to summary.module. Seems to work except I get a "warning: Cannot modify header information - headers already sent by" message before the RSS feed. Any thoughts?
All I did was modify summary.module to add an item in summary_menu():
Hi I'm working on to get the module called: "User badges" to work on Drupal 4.7 beta-6 and I struck onto an error..
Unlucky me the search engine has gone dead here on drupal.org so I can't search due to an upgrade of the site..
The line that's giving me a problem is this:
$edit = array2object($edit);
Here's what I've found about array2object.. It's used in Drupal 4.6 API and lies under common.inc and it does this: Convert an associative array to an anonymous object.