Index: trunk/psModules/src/camera/pmFPACopy.c
===================================================================
--- trunk/psModules/src/camera/pmFPACopy.c	(revision 10516)
+++ trunk/psModules/src/camera/pmFPACopy.c	(revision 11255)
@@ -37,4 +37,5 @@
 }
 
+#if 0
 // Find the blank (image-less) PHU, given a cell.
 static pmHDU *findBlankPHU(const pmCell *cell // The cell for which to find the PHU
@@ -57,4 +58,5 @@
     return NULL;
 }
+#endif
 
 //////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -277,4 +279,5 @@
     binItem->data.S32 *= yBin;
 
+    #if 0
     // Copy any headers
     pmHDU *targetHDU = pmHDUFromCell(target); // The target HDU
@@ -285,12 +288,15 @@
         }
     }
+
     // Copy the PHU over as well, if required
     pmHDU *targetPHU = findBlankPHU(target); // The target PHU
     if (targetPHU && targetPHU != targetHDU && !targetPHU->header) {
-        pmHDU *sourcePHU = findBlankPHU(source); // The source PHU
-        if (sourcePHU->header) {
+        //        pmHDU *sourcePHU = pmHDUGetHighest(source->parent->parent, source->parent, source); // A source HDU
+        pmHDU *sourcePHU = findBlankPHU(source); // The target PHU
+        if (sourcePHU && sourcePHU->header) {
             targetPHU->header = psMetadataCopy(targetPHU->header, sourcePHU->header);
         }
     }
+    #endif
 
     target->data_exists = true;
