From 054b4d0be6f3d524a602d787380d9da5986c1f9f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 18 Sep 2008 09:56:08 -0400 Subject: if favor/disfavor submitted through ajax, return micro-html of form darcs-hash:20080918135608-5ed1f-d753cb01f96e04871eb4f503ccd258674a03623a.gz --- actions/favor.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'actions/favor.php') diff --git a/actions/favor.php b/actions/favor.php index 10ad6b809..142d83ae1 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -63,8 +63,19 @@ class FavorAction extends Action { $this->notify($fave, $notice, $user); - common_redirect(common_local_url('showfavorites', - array('nickname' => $user->nickname))); + if ($this->boolean('ajax')) { + common_start_html('text/xml'); + common_element_start('head'); + common_element('title', _('Disfavor')); + common_element_end('head'); + common_element_start('body'); + common_disfavor_form($notice); + common_element_end('body'); + common_element_end('html'); + } else { + common_redirect(common_local_url('showfavorites', + array('nickname' => $user->nickname))); + } } function notify($fave, $notice, $user) { -- cgit v1.2.3