Index: trunk/psphot/src/psphotMagnitudes.c
===================================================================
--- trunk/psphot/src/psphotMagnitudes.c	(revision 6715)
+++ trunk/psphot/src/psphotMagnitudes.c	(revision 6753)
@@ -3,12 +3,9 @@
 bool psphotMagnitudes (psArray *sources, psMetadata *config, pmPSF *psf) {
 
-    bool status;
-
     psTimerStart ("psphot");
 
-    float RADIUS = psMetadataLookupF32 (&status, config, "AP_RADIUS");
     for (int i = 0; i < sources->n; i++) {
 	pmSource *source = (pmSource *) sources->data[i];
-	pmSourceMagnitudes (source, psf, RADIUS);
+	pmSourceMagnitudes (source, psf, true, true);
     }	
 
@@ -16,4 +13,2 @@
     return true;
 }
-
-// XXX should this function use RADIUS or should it 
