diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-08 14:25:59 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-08 14:25:59 -0400 |
commit | 59ef19b7d3fa6aa326cebf528a30dcae42631204 (patch) | |
tree | b3e58306296f485b803a158e22311284a7a7ca3f /lib/util.php | |
parent | c47a576f6c15f1b59206c8b8d6470f4fb505e5a4 (diff) |
fix requires in dis/favor and correct url in form
darcs-hash:20080908182559-84dde-27b288efd341a4dd148abb641064d9e48ca2aa11.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 70894aeff..2da767a04 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1560,7 +1560,7 @@ function common_disfavor_form($notice) { function common_favor_form($notice) { common_element_start('form', array('id' => 'favor-' . $notice->id, 'method' => 'post', - 'action' => common_local_url('disfavor'))); + 'action' => common_local_url('favor'))); common_hidden('token', common_session_token()); common_hidden('notice', $notice->id); common_submit('favor-submit-' . $notice->id, '♡'); |