Alrighty, here's my problem.
In the old templates I had this in the Outside Variables box of the target template:
formSetNo
Another template POSTS that variable and an integer value to the target via selection from a popup menu.
Following this sample code:
$vbulletin->input->clean_array_gpc('r', array(
'my_variable_1' => TYPE_STR,
'my_variable_2' => TYPE_INT,
));
I have the following in the 3.5 target template:
$vbulletin->input->clean_array_gpc('r', array(
'formSetNo' => TYPE_INT
));
I've also tried it with TYPE_STR.
Anyway, the target template isn't getting the variable. Any suggestions? This is for a major feature of our site!
|