From: Marc-Etienne V. <Mar...@al...> - 2009-03-26 18:50:56
|
ru...@us... a écrit : > Revision: 6705 > http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6705&view=rev > Author: rurban > Date: 2009-03-25 11:36:56 +0000 (Wed, 25 Mar 2009) > > Log Message: > ----------- > keep old functionality > > Modified Paths: > -------------- > trunk/lib/config.php > > Modified: trunk/lib/config.php > =================================================================== > --- trunk/lib/config.php 2009-03-25 11:31:37 UTC (rev 6704) > +++ trunk/lib/config.php 2009-03-25 11:36:56 UTC (rev 6705) > @@ -99,6 +99,14 @@ > if ($version) return $agent and browserVersion() >= $version; > else return $agent; > } > +// NS3 or less > +function isBrowserNS3() { > + return (isBrowserNetscape() and browserVersion() < 4.0); > +} > +// NS4 or less > +function isBrowserNS4() { > + return (isBrowserNetscape() and browserVersion() < 5.0); > +} Hello Reini, Does someone really use Phpwiki with Netscape 3 or 4? I no longer have access to Netscape 4, so I cannot test and I really doubt everything will work in such an old browser. I think we have to make some choices about what we support. We have no ressources to test 12 themes times 10 browsers times several backends times several databases times several PHP versions. What do you think? Regards, Marc-Etienne -- Marc-Etienne Vargenau Alcatel-Lucent France, Route de Villejust, 91620 NOZAY, FRANCE +33 (0)1 30 77 28 33, Mar...@al... |