Index: shortcut.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/shortcut/shortcut.module,v retrieving revision 1.2.2.2 diff -u -p -r1.2.2.2 shortcut.module --- shortcut.module 8 Oct 2008 21:49:30 -0000 1.2.2.2 +++ shortcut.module 24 Jun 2009 08:02:21 -0000 @@ -269,12 +269,12 @@ function theme_shortcut_admin_list($shor $rows[] = array( $shortcut_string, $shortcut['title'], - l(t('Edit'), 'node/' . $shortcut['nid'] . '/edit', drupal_get_destination()) + l(t('Edit'), 'node/' . $shortcut['nid'] . '/edit', array('query' => drupal_get_destination())) . ' | ' - . l(t('Remove'), 'node/' . $shortcut['nid'] . '/delete', drupal_get_destination()) + . l(t('Remove'), 'node/' . $shortcut['nid'] . '/delete', array('query' => drupal_get_destination())) ); } - $output = l(t('Add a new shortcut'), 'node/add/shortcut', drupal_get_destination()); + $output = l(t('Add a new shortcut'), 'node/add/shortcut', array('query' => drupal_get_destination())); $output .= theme('table', $headers, $rows, array('class' => 'shortcut_admin_list')); return $output; }