|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-12-21 05:41 UTC] magnus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 18:00:01 2025 UTC |
Description: ------------ while use phpmyadmin2.6.0-pl3 with php-4.3.10, phpmyadmin say "Illegal offset type in /phpmyadmin-2.6.0-pl3/libraries/grab_globals.lib.php on line 54 ", their is no problem with 4.3.9 or 5.0.3. grab_globals.lib.php: 53: foreach ($server_vars as $current) { 54: if (isset($_SERVER[$current])) { 55: $$current = $_SERVER[$current]; 56: } elseif (!isset($$current)) { 57: $$current = ''; 58: } 59: } I think maybe something wrong with foreach(), it has been changed in php-4.3.10(I see it in ChangeLog)