diff --git a/docroot/sites/all/modules/ideation/ideation.module b/docroot/sites/all/modules/ideation/ideation.module
index 372ea1d..cd531f4 100755
--- a/docroot/sites/all/modules/ideation/ideation.module
+++ b/docroot/sites/all/modules/ideation/ideation.module
@@ -15,7 +15,6 @@ function ideation_init() {
 * Make sure that ideation nodes are not created/edited in admin interface
 */
 function ideation_admin_paths_alter(&$paths) {
-  
   $arg1 = arg(1);  
   $idea_node_add_page  = (arg(0) == 'node' && arg(1) == 'add' && arg(2) == 'idea-site');
   $node_edit_page = (arg(0) == 'node' && !empty($arg1) && is_numeric($arg1) && arg(2) == 'edit');
@@ -23,7 +22,8 @@ function ideation_admin_paths_alter(&$paths) {
   
   if ($node_edit_page) {
     $node_id = arg(1);
-    $node = node_load($node_id);
+    $query = db_query("SELECT type FROM {node} WHERE nid = :nid", array(':nid' => $node_id));
+    $node = $query->fetchObject();
 
     if ($node->type == 'idea_site') { 
       $idea_node_edit_page = TRUE;
@@ -278,4 +278,4 @@ function ideation_block_view($delta = '') {
   }
   return $block;
 
-}
\ No newline at end of file
+}
