
Chris
Staff

Aug 31, 2010, 2:50 PM
Post #4 of 5
(1898 views)
Shortcut
|
|
Re: [rcrofoot] Undefined index: QUERY_STRING in viewer_functions.php on line 289
[In reply to]
|
Can't Post
|
|
Hi Rick, Wow, that's an old version! :) I believe this is fixed in the latest version of CMS Builder, but if you'd like you can make the change to your own installation. Open up cmsAdmin/lib/viewer_functions.php in a text editor and find line 298. It'll look like this:
$urlDataFields = array(@$_SERVER["PATH_INFO"], $_SERVER["QUERY_STRING"]); ... add an @ here:
$urlDataFields = array(@$_SERVER["PATH_INFO"], @$_SERVER["QUERY_STRING"]); I hope this helps! Please let me know if you have any questions. Chris
|