Period changed to underscore |
[eluser]jeffpeck[/eluser]
To anybody having an issue with this, this might help. It appears that it is using the $_GET variable which you can plainly view is converting any periods to underscores. As noted here, this is the expected behavior of $_GET: http://php.net/manual/en/language.variab...ternal.php Quote:Note: Dots and spaces in variable names are converted to underscores. For example <input name="a.b" /> becomes $_REQUEST["a_b"]. To fix this, modify the config.php file: Code: /* In my case, QUERY_STRING worked. You might need to try others, or have the script print_r($_SERVER) to easily find the correct variable. |
Messages In This Thread |
Period changed to underscore - by El Forum - 10-16-2008, 03:41 PM
Period changed to underscore - by El Forum - 10-16-2008, 04:45 PM
Period changed to underscore - by El Forum - 10-16-2008, 08:41 PM
Period changed to underscore - by El Forum - 10-17-2008, 08:48 AM
Period changed to underscore - by El Forum - 03-03-2009, 05:57 AM
Period changed to underscore - by El Forum - 03-03-2009, 09:31 AM
Period changed to underscore - by El Forum - 03-04-2009, 04:54 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:05 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:15 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:21 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:25 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:28 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:34 PM
Period changed to underscore - by El Forum - 07-12-2010, 07:33 AM
Period changed to underscore - by El Forum - 02-10-2011, 12:02 PM
|