Index: lams_common/db/sql/insert_lams_unix_config_data.sql =================================================================== RCS file: /usr/local/cvsroot/lams_common/db/sql/insert_lams_unix_config_data.sql,v diff -u -r1.59 -r1.60 --- lams_common/db/sql/insert_lams_unix_config_data.sql 12 Jan 2012 20:08:17 -0000 1.59 +++ lams_common/db/sql/insert_lams_unix_config_data.sql 27 Feb 2012 15:35:26 -0000 1.60 @@ -113,7 +113,7 @@ values ('DisplayPrintButton','false', 'config.display.print.button', 'config.header.features', 'BOOLEAN', 1); insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) -values ('ForceMobileDevToUseFlashless','false', 'config.force.mobile.use.flashlesh', 'config.header.features', 'BOOLEAN', 1); +values ('ForceMobileDevToUseFlashless','true', 'config.force.mobile.use.flashlesh', 'config.header.features', 'BOOLEAN', 1); insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) values ('LDAPProvisioningEnabled','false', 'config.ldap.provisioning.enabled', 'config.header.ldap', 'BOOLEAN', 1); Index: lams_common/db/sql/insert_lams_windows_config_data.sql =================================================================== RCS file: /usr/local/cvsroot/lams_common/db/sql/insert_lams_windows_config_data.sql,v diff -u -r1.52 -r1.53 --- lams_common/db/sql/insert_lams_windows_config_data.sql 12 Jan 2012 20:08:17 -0000 1.52 +++ lams_common/db/sql/insert_lams_windows_config_data.sql 27 Feb 2012 15:35:26 -0000 1.53 @@ -110,7 +110,7 @@ values ('DisplayPrintButton','false', 'config.display.print.button', 'config.header.features', 'BOOLEAN', 1); insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) -values ('ForceMobileDevToUseFlashless','false', 'config.force.mobile.use.flashlesh', 'config.header.features', 'BOOLEAN', 1); +values ('ForceMobileDevToUseFlashless','true', 'config.force.mobile.use.flashlesh', 'config.header.features', 'BOOLEAN', 1); insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) values ('EnableServerRegistration', 'false', 'config.server2server.registration.enable', 'config.header.features', 'BOOLEAN', 1); Index: lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02040006.sql =================================================================== RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02040006.sql,v diff -u -r1.22 -r1.23 --- lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02040006.sql 19 Feb 2012 20:13:39 -0000 1.22 +++ lams_common/src/java/org/lamsfoundation/lams/dbupdates/patch02040006.sql 27 Feb 2012 15:35:26 -0000 1.23 @@ -75,7 +75,7 @@ -- LDEV-2664 Switch learner interface for learners if they use a mobile device insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) -values ('ForceMobileDevToUseFlashless','false', 'config.force.mobile.use.flashlesh', 'config.header.features', 'BOOLEAN', 1); +values ('ForceMobileDevToUseFlashless','true', 'config.force.mobile.use.flashlesh', 'config.header.features', 'BOOLEAN', 1); -- LDEV-2704 Weaken foreign key's constraints due to problems with learning designs removal ALTER TABLE lams_log_event DROP FOREIGN KEY FK_lams_event_log_3;