From: <var...@us...> - 2012-11-20 19:51:19
|
Revision: 8501 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8501&view=rev Author: vargenau Date: 2012-11-20 19:51:13 +0000 (Tue, 20 Nov 2012) Log Message: ----------- MacIE is dead Modified Paths: -------------- trunk/lib/plugin/AddComment.php trunk/lib/plugin/CreateToc.php Modified: trunk/lib/plugin/AddComment.php =================================================================== --- trunk/lib/plugin/AddComment.php 2012-11-20 17:21:56 UTC (rev 8500) +++ trunk/lib/plugin/AddComment.php 2012-11-20 19:51:13 UTC (rev 8501) @@ -84,10 +84,6 @@ if ($request->isPost() and !empty($comment['addcomment'])) { $this->add($request, $comment, 'comment'); // noreturn } - if ($args['jshide'] and isBrowserIE() and browserDetect("Mac")) { - //trigger_error(_("jshide set to 0 on Mac IE"), E_USER_NOTICE); - $args['jshide'] = 0; - } // Now we display previous comments and/or provide entry box // for new comments Modified: trunk/lib/plugin/CreateToc.php =================================================================== --- trunk/lib/plugin/CreateToc.php 2012-11-20 17:21:56 UTC (rev 8500) +++ trunk/lib/plugin/CreateToc.php 2012-11-20 19:51:13 UTC (rev 8501) @@ -29,7 +29,6 @@ * @author: Reini Urban, Marc-Etienne Vargenau * * Known problems: - * - MacIE will not work with jshide. * - it will crash with old markup and Apache2 (?) * - Certain corner-edges will not work with TOC_FULL_SYNTAX. * I believe I fixed all of them now, but who knows? @@ -399,9 +398,6 @@ if (!$pagename) { return $this->error(sprintf(_("A required argument '%s' is missing."), 'pagename')); } - if (isBrowserIE() and browserDetect("Mac")) { - $jshide = 0; - } if (($notoc) or ($liststyle == 'ol')) { $with_counter = 1; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |