View Issue Details

IDProjectCategoryView StatusLast Update
985ComposrGeneral / Uncategorisedpublic2013-01-17 22:40
ReporterLhasadreams Assigned ToChris Graham  
PrioritynormalSeverityfeature 
Status resolvedResolutionfixed 
Summary985: Safari crashes on an iPad running iOS 6.0.1
DescriptionGo to the admin zone
Select security
Select Global Privileges
On selection select submission

This causes Safari to close and crash.
TagsNo tags attached.
Attach Tags
Time estimation (hours)
Sponsorship open

Sponsor

Date Added Member Amount Sponsored

Activities

Chris Graham

2013-01-17 22:35

administrator   ~1144

https://bugs.webkit.org/show_bug.cgi?id=98178

Chris Graham

2013-01-17 22:39

administrator   ~1145

Last edited: 2013-01-17 22:39

Fix...

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));
 }

Issue History

Date Modified Username Field Change
2023-02-26 18:29 Chris Graham Category General => General / Uncategorised