Index: outline_designer.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/outline_designer/outline_designer.module,v
retrieving revision 1.10
diff -u -r1.10 outline_designer.module
--- outline_designer.module	10 Feb 2009 21:45:49 -0000	1.10
+++ outline_designer.module	11 Feb 2009 20:29:26 -0000
@@ -141,7 +141,7 @@
     $base_path = base_path();
     foreach ($form['table'] as $key => $row) {
       if($key != '#theme' && $key != '#tree') {
-        $type = db_result(db_query("SELECT type FROM node WHERE nid=%s",$row['nid']['#value']));
+        $type = db_result(db_query("SELECT type FROM {node} WHERE nid=%s",$row['nid']['#value']));
           $form['table'][$key]['title']['#prefix'] = '<img id="node-'. $row['nid']['#value'] .'-icon" src="'. $base_path . variable_get("outline_designer_". $type ."_icon", $od_path ."/images/node.png") .'"  alt="Nid: '. $row['nid']['#value'] .'" title="Nid: '. $row['nid']['#value'] .'" style="float:left; margin:2px;" /><img src="'. $base_path . $od_path .'/images/edit.png" id="node-'. $row['nid']['#value'] .'" class="outline_designer_edit_button" />';
       }
     }

