Embedded problem with g2_highlightId
JonnyG
Joined: 2005-10-20
Posts: 23 |
Posted: Sun, 2008-09-21 22:38 |
If my URL to the embedded page http://www.tatankanation.org/tiki-g2.php?g2_itemId=2446&g2_highlightId=7708 includes the g2_highlightid then I get a blank page. If I call the same thing in the non-embedded http://www.tatankanation.org/gallery225/main.php?g2_itemId=2446&g2_highlightId=7708 it works fine. This is using 2.3RC1. For now I added code to remove the g2_highlightId, and the page displays fine. // // remove the request for g2_highlightId // if (isset($_REQUEST['g2_highlightId'])) { unset($_REQUEST['g2_highlightId']); } if (isset($_GET['g2_highlightId'])) { unset($_GET['g2_highlightId']); } |
|
Posts: 6
I assume that this goes on the embedded gallery php page, but where in the code?
Thanks