View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
985 | Composr | General / Uncategorised | public | 2013-01-17 22:26 | 2013-01-17 22:40 |
Reporter | Lhasadreams | Assigned To | Chris Graham | ||
Priority | normal | Severity | feature | ||
Status | resolved | Resolution | fixed | ||
Summary | 985: Safari crashes on an iPad running iOS 6.0.1 | ||||
Description | Go to the admin zone Select security Select Global Privileges On selection select submission This causes Safari to close and crash. | ||||
Tags | No tags attached. | ||||
Attach Tags | |||||
Time estimation (hours) | |||||
Sponsorship open | |||||
|
https://bugs.webkit.org/show_bug.cgi?id=98178 |
|
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)); } |
Date Modified | Username | Field | Change |
---|---|---|---|
2023-02-26 18:29 | Chris Graham | Category | General => General / Uncategorised |