8 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function checkUnicodeCompliantBrowser() {
global $wgBrowserBlackList;
if( empty( $_SERVER["HTTP_USER_AGENT"] ) ) {
// No User-Agent header sent? Trust it by default...
return true;
}
$currentbrowser = $_SERVER["HTTP_USER_AGENT"];
foreach ( $wgBrowserBlackList as $browser ) {
if ( preg_match($browser, $currentbrowser) ) {
return false;
}
}
return true;
}
if ( preg_match($browser, $currentbrowser) ) {
preg_match( '/' . $browser . '/', $currentbrowser)
if ( $browser == $currentbrowser )
preg_match("/\Q$browser\E/", $currentbrowser);
8 Einträge, 1 Seite |