? 696402-context-node-form.patch ? 713526-panels-stacked-tpl-conditions.patch ? 718368-ignore-query-string.patch ? 827310-hide-disabled-comments.patch ? 853368-field-override-broken.patch ? 867898-clone-edited-item.patch ? TODO.txt ? auto-guess-type-ajax-element.patch ? comment_links_8.patch ? ctools-853114-docs.patch ? ctools-862320.patch ? ctools-ajax-redirect-with-delayed-optional-check-for-positive-delay.patch ? ctools-custom_content.patch ? ctools-no-base-types-1.patch ? ctools-object-cache.inc-session-handling_0.patch ? ctools_ahah_callback_rebuilds_831922.patch ? ctools_node_build_modes_views_style_0.patch ? help/stylizer.html Index: ctools.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/ctools/ctools.module,v retrieving revision 1.27.2.41 diff -u -p -r1.27.2.41 ctools.module --- ctools.module 23 Jul 2010 21:47:20 -0000 1.27.2.41 +++ ctools.module 2 Aug 2010 19:27:43 -0000 @@ -784,7 +784,9 @@ function ctools_export_ui_load($item_nam if ($plugin) { // Get the load callback. $item = ctools_export_crud_load($plugin['schema'], $item_name); - return empty($item) ? FALSE : $item; + // Clone the item as this is an editing process and we never want to + // change the statically cached item. + return empty($item) ? FALSE : drupal_clone($item); } }