blob: 1661b2fa39ef3aac692cd76285c6da01756f8bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
/**
* Reset profile fields form
*/
$params = array(
'value' => elgg_echo('profile:resetdefault'),
'class' => 'action-button disabled',
);
echo elgg_view('input/submit', $params);
|