Themes/default/Profile.template.php 1 location
|
@@ 1486-1493 (lines=8) @@
|
| 1483 |
|
<hr> |
| 1484 |
|
<dl class="settings">'; |
| 1485 |
|
|
| 1486 |
|
elseif ($field['type'] == 'callback') |
| 1487 |
|
{ |
| 1488 |
|
if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
| 1489 |
|
{ |
| 1490 |
|
$callback_func = 'template_profile_' . $field['callback_func']; |
| 1491 |
|
$callback_func(); |
| 1492 |
|
} |
| 1493 |
|
} |
| 1494 |
|
else |
| 1495 |
|
{ |
| 1496 |
|
echo ' |
Themes/default/Register.template.php 1 location
|
@@ 216-220 (lines=5) @@
|
| 213 |
|
{ |
| 214 |
|
if ($field['type'] == 'callback') |
| 215 |
|
{ |
| 216 |
|
if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
| 217 |
|
{ |
| 218 |
|
$callback_func = 'template_profile_' . $field['callback_func']; |
| 219 |
|
$callback_func(); |
| 220 |
|
} |
| 221 |
|
} |
| 222 |
|
else |
| 223 |
|
{ |