Index: draggableviews.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/draggableviews/draggableviews.module,v retrieving revision 1.6.2.31 diff -u -p -r1.6.2.31 draggableviews.module --- draggableviews.module 7 Sep 2009 19:14:47 -0000 1.6.2.31 +++ draggableviews.module 10 Sep 2009 16:58:09 -0000 @@ -216,15 +216,15 @@ function draggableviews_views_pre_execut // Get info array. $info = _draggableviews_info($view); - // Attach the info array to the view object. - // We need to use a reference because the info array will change. - $view->draggableviews_info = &$info; - if (!isset($info['order'])) { // Nothing to do. return; } + // Attach the info array to the view object. + // We need to use a reference because the info array will change. + $view->draggableviews_info = &$info; + // We want the view to execute the count query. New nodes which should be added to the very end will use this value. $view->get_total_rows = TRUE;