# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: /var/www/kodak/sites/all/modules/contrib/quote
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
Index: quote.module
--- quote.module Base (BASE)
+++ quote.module Locally Modified (Based On LOCAL)
@@ -112,7 +112,7 @@
       $node = node_load($nid);
 
       if (in_array($node->type, _quote_variable_get('node_types'))) {
-        $quote = $node->body[$node->language][0]['safe_value'];
+        $quote = array_key_exists('safe_value', $node->body[$node->language][0]) ? $node->body[$node->language][0]['safe_value']:$node->body[$node->language][0]['value'] ;
         $author = !empty($node->name) ? $node->name : variable_get('anonymous', 'Anonymous');
       }
       else {
