Index: popups_reference.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/popups_reference/popups_reference.module,v retrieving revision 1.1.2.12 diff -u -p -w -r1.1.2.12 popups_reference.module --- popups_reference.module 7 Mar 2009 06:54:25 -0000 1.1.2.12 +++ popups_reference.module 10 Mar 2009 18:44:59 -0000 @@ -93,8 +93,8 @@ function popups_reference_alter_item(&$f if ($links) { // Put the nodereference widget and links in an wrapper. // Makes it easy to find for Ahah targeting, and popups_reference behavior selecting. - $form[$key]['#prefix'] = '
'; - $form[$key]['#suffix'] = '
Add New: ' . implode(', ', $links) .'
'; + $form[$key]['#prefix'] .= '
'; + $form[$key]['#suffix'] = '
Add New: ' . implode(', ', $links) .'
'. (!empty($form[$key]['#suffix']) ? $form[$key]['#suffix'] : ''); } } } @@ -151,4 +151,3 @@ function _popups_reference_counter() { static $count = 0; return $count++; } -