Index: nodeblock.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/nodeblock/nodeblock.module,v
retrieving revision 1.15
diff -d -p -r1.15 nodeblock.module
*** nodeblock.module	6 Jan 2010 16:46:58 -0000	1.15
--- nodeblock.module	16 Feb 2011 19:08:04 -0000
*************** function nodeblock_link($type, $node = N
*** 191,197 ****
   * templates, but a higher priority than a generic node.tpl.php.
   */
  function nodeblock_preprocess_node(&$variables) {
!   if ($variables['node']->nodeblock) {
      array_unshift($variables['template_files'], 'node-nodeblock-default');
    }
  }
--- 191,197 ----
   * templates, but a higher priority than a generic node.tpl.php.
   */
  function nodeblock_preprocess_node(&$variables) {
!   if (isset($variables['node']->nodeblock)) {
      array_unshift($variables['template_files'], 'node-nodeblock-default');
    }
  }
