Merging to Trunk. Changing addPublicationToPerson.jsp to skip form when trying to edit an existing authorship, NIHVIVO-912

This commit is contained in:
bdc34 2010-07-22 00:38:11 +00:00
parent e3d09333c4
commit 38130db941

View file

@ -122,6 +122,15 @@ public class EditSubmission {
}
}
if( log.isDebugEnabled() ){
for( String key : literalsFromForm.keySet() ){
log.debug( key + " literal " + literalsFromForm.get(key) );
}
for( String key : urisFromForm.keySet() ){
log.debug( key + " uri " + urisFromForm.get(key) );
}
}
this.basicValidation = new BasicValidation(editConfig,this);
Map<String,String> errors = basicValidation.validateUris( urisFromForm );
if( errors != null ) {