// Copy from source to targetKey
$this->getConfigInstance()->setConfigEntry($targetKey, $this->getConfigInstance()->getConfigEntry($sourceKey));
} // END - foreach
+
+ // Translate last exception into a status code
+ $statusCode = $this->getTranslatedStatusFromLastException();
+
+ // Set it in configuration (temporarily)
+ $this->getConfigInstance()->setConfigEntry('answer_status', $statusCode);
}
/**
// Now unset this configuration entry (to save some memory again)
$this->getConfigInstance()->unsetConfigEntry($configKey);
} // END - foreach
+
+ // Remove answer status as well
+ $this->getConfigInstance()->unsetConfigEntry('answer_status');
}
}