File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -188,15 +188,6 @@ class Core
188188 */
189189 private static $ maxFormFields = "" ;
190190
191- /**
192- * Data conflict resolution. Added in 3.0.13. In case multiple accounts edit the same submission at the same time,
193- * Form Tools will show a conflict resolution page to the user in the interface letting them see which fields
194- * are conflicted, and allow them to choose one value over the other. If you want to rely on the Submission History
195- * module to just log all changes to a field and not present this resolution page to the user, set this to false.
196- */
197- private static $ dataConflictResolutionEnabled = true ;
198-
199-
200191 // -------------------------------------------------------------------------------------------------
201192
202193 // API settings.
@@ -489,7 +480,6 @@ public static function loadConfigFile()
489480 self ::$ sessionType = isset ($ g_session_type ) && in_array ($ g_session_type , array ("php " , "database " )) ? $ g_session_type : "php " ;
490481 self ::$ sessionSavePath = isset ($ g_session_save_path ) ? $ g_session_save_path : "" ;
491482 self ::$ useSmartyBC = isset ($ g_use_smarty_bc ) ? $ g_use_smarty_bc : false ;
492- self ::$ dataConflictResolutionEnabled = isset ($ g_data_conflict_resolution_enabled ) ? $ g_data_conflict_resolution_enabled : true ;
493483
494484 // API settings
495485 self ::$ apiDebug = isset ($ g_api_debug ) ? $ g_api_debug : false ;
@@ -817,11 +807,6 @@ public static function setTempCacheHash($value)
817807 self ::$ tempCache = $ value ;
818808 }
819809
820- public static function isDataConflictResolutionEnabled ()
821- {
822- return self ::$ dataConflictResolutionEnabled ;
823- }
824-
825810
826811 // private methods
827812
You can’t perform that action at this time.
0 commit comments