V: 2.0.19
In profile-modify, in the part.
'secret_answer_2' => array(
'type' => 'text',
'label' => 'Verifica respuesta secreta',
'enabled' => empty($cur_profile['openid_uri']),
'size' => 20,
'value2' => $value2,
'permission' => 'profile_identity',
'is_dummy' => true,
),
In error_logs, one error say me: undefined $value2. Where should i defined this variable?
Before array for example? $value2 = ''; ?
If you do that and $value2 has a value, it will be removed and possibly cause a problem. Try this before the array -
if (!isset($value2))
$value2 = null;
Quote from: Sir Osis of Liver on March 20, 2025, 05:31:19 PMIf you do that and $value2 has a value, it will be removed and possibly cause a problem. Try this before the array -
if (!isset($value2))
$value2 = null;
Thnxx uu