PKP Bugzilla – Bug 6101
Error while submitting "Scheduled Conference Setup / Details - Step 1" form
Last modified: 2011-08-17 14:59:11 PDT
Created attachment 3318 [details] php error dump SchedConfSetupStep1Form stores everything in database except Principal Contact's Affiliation (under section 1.3 on /index.php/epns/2011/manager/schedConfSetup/1). "contactAffiliation" field of the scheduled conference is being parsed as an array, instead as a string, resulting in PHP error while "escaping" the array value (when tested with MySQL, mysql_real_escape_string() fails). CAUSE: - "contactAffiliation" field is not being processed as a localized settings option. PATCH: in: ocs/classes/manager/form/schedConfSetup/SchedConfSetupStep1Form.inc.php line: 65 - return array('introduction', 'overview', 'emailSignature', 'sponsorNote', 'contributorNote'); + return array('introduction', 'overview', 'contactAffiliation', 'emailSignature', 'sponsorNote', 'contributorNote');
This is still an issue in OCS 2.3.3-1. Here is the problem: The Affiliation field for Principal Contact that is entered in Scheduled Conference Setup Step1 is displayed as the word "Array" in Contact page: http://pkp.sfu.ca/ocs/pkp/index.php/pkp2011/index/about/contact
*** This bug has been marked as a duplicate of bug 6389 ***