Hello,

I ask today for review of the attached patches which
addresses an issue where the content module view 'view'
(with all cache disabled) not returning an array as expected.

In response to issue #11240, http://issues.ez.no/11240

We have added today a patch applied against svn trunk
rev 19645 tested against 3.10alpha1

The patch is also available for download at,
http://issues.ez.no/AttachmentItemContent.php?Id=5345

Attached is the patch for your review.

Respectfully,
Brookins Consulting
Dedicated eZ Partner

Thank you for your continued support!
Index: ../private/trunk/kernel/content/view.php
===================================================================
--- ../private/trunk/kernel/content/view.php	(revision 19645)
+++ ../private/trunk/kernel/content/view.php	(working copy)
@@ -207,7 +207,7 @@
         $cacheFileArray = array( 'cache_dir' => false, 'cache_path' => false );
         $args = compact( $localVars );
         $data = eZNodeviewfunctions::contentViewGenerate( false, $args ); // the false parameter will disable generation of the 'binarydata' entry
-        return $data['content']; // Return the $Result array
+        return $data; // Return the $Result array
     }
 }
 
-- 
Sdk-public mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/sdk-public

Reply via email to