Themes/default/Register.template.php 1 location
|
@@ 186-190 (lines=5) @@
|
183 |
|
{ |
184 |
|
if ($field['type'] == 'callback') |
185 |
|
{ |
186 |
|
if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
187 |
|
{ |
188 |
|
$callback_func = 'template_profile_' . $field['callback_func']; |
189 |
|
$callback_func(); |
190 |
|
} |
191 |
|
} |
192 |
|
else |
193 |
|
{ |
Themes/default/Profile.template.php 1 location
|
@@ 1474-1481 (lines=8) @@
|
1471 |
|
<hr> |
1472 |
|
<dl class="settings">'; |
1473 |
|
|
1474 |
|
elseif ($field['type'] == 'callback') |
1475 |
|
{ |
1476 |
|
if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
1477 |
|
{ |
1478 |
|
$callback_func = 'template_profile_' . $field['callback_func']; |
1479 |
|
$callback_func(); |
1480 |
|
} |
1481 |
|
} |
1482 |
|
else |
1483 |
|
{ |
1484 |
|
echo ' |