diff options
author | millette <millette@controlyourself.ca> | 2008-11-18 10:56:43 -0500 |
---|---|---|
committer | millette <millette@controlyourself.ca> | 2008-11-18 10:56:43 -0500 |
commit | 9f1b4b3ed6724bf07e11581a03d898467947b954 (patch) | |
tree | 4d9560f6830d85f40ff6fddb850d5f89788bfa05 /lib/util.php | |
parent | d1ecedfffebbb0c9687cca7e37fa3558c15ad92a (diff) |
small nudge enhancements
darcs-hash:20081118155643-099f7-df2d332253d9acc007966b28f5afc2edcd7cc9ac.gz
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; } |