diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-20 19:18:02 -0800 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-20 19:18:02 -0800 |
commit | d6da9779f7e24136a255808e36501129ed0c1c1f (patch) | |
tree | 620e1af584c6297cf7b0635c8b96a9ae26bf5fb6 /actions/favor.php | |
parent | 61850ceb5575c0fab8bd70bbe924543b09a2d765 (diff) | |
parent | e9b9795eeb30837ddddd980eaea9d11c055cb843 (diff) |
Merge branch 'master' of ssh://zach@dev.controlyourself.ca/var/www/trunk
Diffstat (limited to 'actions/favor.php')
-rw-r--r-- | actions/favor.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/favor.php b/actions/favor.php index afda93cff..92756366d 100644 --- a/actions/favor.php +++ b/actions/favor.php @@ -20,6 +20,7 @@ if (!defined('LACONICA')) { exit(1); } require_once(INSTALLDIR.'/lib/mail.php'); +require_once INSTALLDIR.'/lib/disfavorform.php'; class FavorAction extends Action { @@ -73,7 +74,8 @@ class FavorAction extends Action $this->element('title', null, _('Disfavor favorite')); $this->elementEnd('head'); $this->elementStart('body'); - common_disfavor_form($notice); + $disfavor = new DisFavorForm($this, $notice); + $disfavor->show(); $this->elementEnd('body'); $this->elementEnd('html'); } else { |