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/disfavor.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'actions/disfavor.php') diff --git a/actions/disfavor.php b/actions/disfavor.php index 6f4a07886..ef01e891f 100644 --- a/actions/disfavor.php +++ b/actions/disfavor.php @@ -64,9 +64,18 @@ class DisfavorAction extends Action { return; } - # XXX: ajax response - - 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', _('Favor')); + common_element_end('head'); + common_element_start('body'); + common_favor_form($notice); + common_element_end('body'); + common_element_end('html'); + } else { + common_redirect(common_local_url('showfavorites', + array('nickname' => $user->nickname))); + } } } \ No newline at end of file -- cgit v1.2.3-54-g00ecf