Skip to content

Commit

Permalink
This quirk doesn't exist in recent Safari versions.
Browse files Browse the repository at this point in the history
Unfortunately, a real changelog is non-existent for Safari, so
limit this to version 9 and above for now until someone can test
earlier versions.

Fixes Bug: 14207
  • Loading branch information
mrubinsk committed Jan 30, 2016
1 parent 88c51fd commit c004aec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions framework/Browser/lib/Horde/Browser.php
Expand Up @@ -546,6 +546,9 @@ public function match($userAgent = null, $accept = null)
$this->setFeature('accesskey');
$this->setFeature('xmlhttpreq');
}
if ($this->_majorVersion >= 9) {
$this->setQuirk('empty_file_input_value', 0);
}
} else {
// Konqueror.
$this->setFeature('javascript', 1.1);
Expand Down

0 comments on commit c004aec

Please sign in to comment.