Index: freelinking.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/freelinking/freelinking.module,v
retrieving revision 1.32.2.11
diff -r1.32.2.11 freelinking.module
43c43
<   if ($_POST['operation'] == 'delete' && $_POST['links']) {
---
>   if (isset($_POST['operation']) && $_POST['operation'] == 'delete' && isset($_POST['links'])) {
46c46
<   elseif ($_POST['operation'] == 'delete-all') {
---
>   elseif (isset($_POST['operation']) && $_POST['operation'] == 'delete-all') {
146a147,148
>   $output = '';
> 
352c354
<     if (variable_get('freelinking_nodetype', 'story') == $type && $_GET['edit']) { // on the right node type, with GET data
---
>     if (variable_get('freelinking_nodetype', 'story') == $type && isset($_GET['edit'])) { // on the right node type, with GET data

Small patch, just removes a few notices where variables are used when not defined. I think (and hope) I checked against the latest version in cvs. If these are already fixed in a code branch, I apologize.

-jrp

Comments

eafarris’s picture

Status: Active » Fixed

Fixed in freelinking-6.x-1.x-dev. Will be part of the next official release. Thanks for the patch.

Status: Fixed » Closed (fixed)

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