diff options
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/util.php b/lib/util.php index 43e565fbf..7dfbc1578 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1866,11 +1866,7 @@ function common_favor_form($notice) { function common_nudge_form($profile) { common_element_start('form', array('id' => 'nudge', 'method' => 'post', 'action' => common_local_url('nudge', array('nickname' => $profile->nickname)))); - common_hidden('token', common_session_token()); //Is this necessary? -// common_element('input', array('id' => 'nudge_nickname', -// 'name' => 'nudge_nickname', -// 'type' => 'hidden', -// 'value' => $profile->nickname)); + common_hidden('token', common_session_token()); common_element('input', array('type' => 'submit', 'class' => 'submit', 'value' => _('Send a nudge'))); @@ -1881,7 +1877,6 @@ function common_nudge_response() { common_element('p', array('id' => 'nudge_response'), _('Nudge sent!')); } - function common_cache_key($extra) { return 'laconica:' . common_keyize(common_config('site', 'name')) . ':' . $extra; } |