Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:35774 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 54502 invoked by uid 1010); 24 Feb 2008 20:05:33 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 54487 invoked from network); 24 Feb 2008 20:05:33 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 24 Feb 2008 20:05:33 -0000 X-Host-Fingerprint: 84.166.67.115 p54A64373.dip.t-dialin.net Received: from [84.166.67.115] ([84.166.67.115:24897] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 03/10-53449-C0EC1C74 for ; Sun, 24 Feb 2008 15:05:32 -0500 Message-ID: <03.10.53449.C0EC1C74@pb1.pair.com> To: internals@lists.php.net Reply-To: "Sebastian" Date: Sun, 24 Feb 2008 21:05:31 +0100 Lines: 18 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.3138 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 X-Posted-By: 84.166.67.115 Subject: register globals -> PHP6 still replaces . in variables from outside From: admin@ifyouwantblood.de ("Sebastian") hi, PHP6 still replaces "." with an underscore in variables from outside. this is an old behavior forced by register globals so i would say its a bug since "." is valid in array keys. for sample: call a script like http://www.example.com/?my.var=1 now $_GET will look like this: Array ( [my_var] => 1) Thanks