We apologize for the instability of composr.app and appreciate your patience. We are working on the statistics addon and trying to find an optimal way to store and render data. Unfortunately, we have yet to find a solution that can handle the traffic (and therefore, tens of millions of statistical records) of composr.app. We're working hard on one.
#985 - Safari crashes on an iPad running iOS 6.0.1
diff --git a/sources/global3.php b/sources/support.php
--- a/sources/global3.php
+++ b/sources/global3.php
@@ -1747,7 +1747,7 @@ function browser_matches($code)
$BROWSER_MATCHES_CACHE[$code]=strpos($browser,'android')!==false;
return $BROWSER_MATCHES_CACHE[$code];
case 'ios':
- $BROWSER_MATCHES_CACHE[$code]=strpos($browser,'iphone')!==false;
+ $BROWSER_MATCHES_CACHE[$code]=strpos($browser,'iphone')!==false || strpos($browser,'ipad')!==false;
return $BROWSER_MATCHES_CACHE[$code];
case 'wysiwyg':
if ((get_option('wysiwyg')=='0') || (is_mobile()))
diff --git a/sources/templates.php b/sources/templates.php
--- a/sources/templates.php
+++ b/sources/templates.php
@@ -232,6 +232,8 @@ function form_input_hidden($name,$value)
*/
function form_input_list_group($title,$entries)
{
+ if (browser_matches('ios')) return $entries; // Workaround to iOS bug
+
return do_template('FORM_SCREEN_INPUT_LIST_GROUP',array('_GUID'=>'dx76a2685d0fba5f819ef160b0816d03','TITLE'=>$title,'ENTRIES'=>$entries));
}