PDA

View Full Version : Bug in 4.04??????


Kyle55155
06-25-2010, 06:13 PM
In 4.03 I had added a number of custom pages via the plug in method. for one page I have one plugin feeding in the head content and a second plugin feeding in the body content. On this page I needed to call my database and extract all my variable values inside the head. Then in the body I could use those variables.

With 4.04 any variable defined in the head is not available in the body. I now have to make a second db call in the body in order to get those variable values.

Is this a bug?? By design??????

marrr
06-27-2010, 03:07 PM
Couldn't you do something like this instead of doing a second database query?

/*Create variables*/
$VARIABLE_1 = "123";
$VARIABLE_2 = "ABC";

/*Register variables in first template*/
vB_Template::preRegister('TEMPLATE_1', array('VARIABE_NAME_1' => $VARIABLE_1, 'VARIABE_NAME_2' => $VARIABLE_2));

/*Register variables in second template*/
vB_Template::preRegister('TEMPLATE_2', array('VARIABE_NAME_1' => $VARIABLE_1, 'VARIABE_NAME_2' => $VARIABLE_2));