Hello,
I have a form that saves data to multiple tables. Everything was working fine until recently (actually I'm not sure when it stopped working).
I have this code on Sumbit (after):
It looks like $cf_just_registered no longer works? and $MyPlugins is also coming up empty. It has been awhile since I worked on this form - so maybe something changed?
Any ideas??
I have a form that saves data to multiple tables. Everything was working fine until recently (actually I'm not sure when it stopped working).
I have this code on Sumbit (after):
<?php
JRequest::setVar('name', JRequest::getVar("first_name")." ".JRequest::getVar("last_name"));
?>
<?php
$MyPlugins =& CFPlugins::getInstance($MyForm->formrow->id);
global $cf_just_registered;
echo '<div class="key_page">';
$smuser = $MyPlugins->cf_joomla_registration['user']->id;
$strLogin = $MyPlugins->cf_joomla_registration['user']->username;
$name = $MyPlugins->cf_joomla_registration['user']->name;
...
It looks like $cf_just_registered no longer works? and $MyPlugins is also coming up empty. It has been awhile since I worked on this form - so maybe something changed?
Any ideas??