Go to the freelinking overview page, where you can see the collected Freelinks.
Don't check the checkboxes, and just press the Update button.

What hsould be: "No items selected"
What comes:

* warning: array_filter() [function.array-filter]: The first argument should be an array in /var/www/drupal-6.9/sites/all/modules/freelinking/freelinking.module on line 359.
* No items selected

The First one is not intended.

A quick & dirty hack would be changing line 359 from
$links = array_filter($form_values['links']);
to
$links = array_filter(array($form_values['links']));

But I don't know if that is goog PHP practice ;-) I don't know PHP.

Comments

Grayside’s picture

Not quite right, because if the form is submitted with actual values you would break actual updates.

Conditionally setting a NULL to be an empty array should do it.

Grayside’s picture

Version: 6.x-1.7 » 6.x-1.x-dev
Status: Active » Fixed

Please test the -dev version so the change can be released as part of Freelinking 1.9.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.