X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fbrisk.phh;h=2c060d241e1df4f7b02efcf0353b7d81c31842d6;hb=2866ca461e9916336ef73fd199210955ab34cbb6;hp=bb51cb6e06d8a7dcaad2c4cce2fb30a026587e08;hpb=95fab8a421e10d8ed1174a76971bb585e81cc8a0;p=brisk.git diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index bb51cb6..2c060d2 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -140,10 +140,10 @@ $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', $G_lng = langtolng($G_lang); $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 ); -$G_brisk_version = "4.0.0"; +$G_brisk_version = "4.1.0"; /* MLANG: ALL THE INFO STRINGS IN brisk.phh */ -$root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': adottato sac-a-push come motore per l\'invio dei dati in tempo reale.', +$root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': adottato sac-a-push come motore per l\'invio dei dati in tempo reale, nuovo trasporto httpfile per explorer.', 'Se vuoi iscriverti alla Mailing List, cliccala!' ), 'en' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NEWS: usage of reader/writer locking instead of generic exclusive locking.', 'If you want to subscribe our Mailing List, click it!' ) ); @@ -2138,14 +2138,19 @@ class Room { printf("NEW_SOCKET (root): %d\n", intval($new_socket)); $enc = get_encoding($header); - + if (isset($header['User-Agent']) && strstr($header['User-Agent'], "MSIE")) { + $transp_type = "htmlfile"; + } + else { + $transp_type = "iframe"; + } force_no_cache($header_out); switch ($path) { case "": case "index.php": ob_start(); - index_main($this, $header_out, $addr, $get, $post, $cookie); + index_main($this, $transp_type, $header_out, $addr, $get, $post, $cookie); $content = ob_get_contents(); ob_end_clean();