Themes/default/Profile.template.php 1 location
|
@@ 1456-1463 (lines=8) @@
|
| 1453 |
|
<hr> |
| 1454 |
|
<dl class="settings">'; |
| 1455 |
|
} |
| 1456 |
|
elseif ($field['type'] == 'callback') |
| 1457 |
|
{ |
| 1458 |
|
if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
| 1459 |
|
{ |
| 1460 |
|
$callback_func = 'template_profile_' . $field['callback_func']; |
| 1461 |
|
$callback_func(); |
| 1462 |
|
} |
| 1463 |
|
} |
| 1464 |
|
else |
| 1465 |
|
{ |
| 1466 |
|
echo ' |
Themes/default/Register.template.php 1 location
|
@@ 189-193 (lines=5) @@
|
| 186 |
|
{ |
| 187 |
|
if ($field['type'] == 'callback') |
| 188 |
|
{ |
| 189 |
|
if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
| 190 |
|
{ |
| 191 |
|
$callback_func = 'template_profile_' . $field['callback_func']; |
| 192 |
|
$callback_func(); |
| 193 |
|
} |
| 194 |
|
} |
| 195 |
|
else |
| 196 |
|
{ |