(dis)favor form method call fix
This commit is contained in:
parent
624ca93c9d
commit
e9b9795eeb
@ -19,6 +19,8 @@
|
|||||||
|
|
||||||
if (!defined('LACONICA')) { exit(1); }
|
if (!defined('LACONICA')) { exit(1); }
|
||||||
|
|
||||||
|
require_once INSTALLDIR.'/lib/favorform.php';
|
||||||
|
|
||||||
class DisfavorAction extends Action
|
class DisfavorAction extends Action
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -74,7 +76,8 @@ class DisfavorAction extends Action
|
|||||||
$this->element('title', null, _('Add to favorites'));
|
$this->element('title', null, _('Add to favorites'));
|
||||||
$this->elementEnd('head');
|
$this->elementEnd('head');
|
||||||
$this->elementStart('body');
|
$this->elementStart('body');
|
||||||
common_favor_form($notice);
|
$favor = new FavorForm($this, $notice);
|
||||||
|
$favor->show();
|
||||||
$this->elementEnd('body');
|
$this->elementEnd('body');
|
||||||
$this->elementEnd('html');
|
$this->elementEnd('html');
|
||||||
} else {
|
} else {
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
if (!defined('LACONICA')) { exit(1); }
|
if (!defined('LACONICA')) { exit(1); }
|
||||||
|
|
||||||
require_once(INSTALLDIR.'/lib/mail.php');
|
require_once(INSTALLDIR.'/lib/mail.php');
|
||||||
|
require_once INSTALLDIR.'/lib/disfavorform.php';
|
||||||
|
|
||||||
class FavorAction extends Action
|
class FavorAction extends Action
|
||||||
{
|
{
|
||||||
@ -73,7 +74,8 @@ class FavorAction extends Action
|
|||||||
$this->element('title', null, _('Disfavor favorite'));
|
$this->element('title', null, _('Disfavor favorite'));
|
||||||
$this->elementEnd('head');
|
$this->elementEnd('head');
|
||||||
$this->elementStart('body');
|
$this->elementStart('body');
|
||||||
common_disfavor_form($notice);
|
$disfavor = new DisFavorForm($this, $notice);
|
||||||
|
$disfavor->show();
|
||||||
$this->elementEnd('body');
|
$this->elementEnd('body');
|
||||||
$this->elementEnd('html');
|
$this->elementEnd('html');
|
||||||
} else {
|
} else {
|
||||||
|
@ -706,7 +706,7 @@ float:none;
|
|||||||
}
|
}
|
||||||
.profile #user_profile .user_note,
|
.profile #user_profile .user_note,
|
||||||
.profile #user_profile .user_url {
|
.profile #user_profile .user_url {
|
||||||
margin-left:55px;
|
margin-left:59px;
|
||||||
clear:none;
|
clear:none;
|
||||||
display:block;
|
display:block;
|
||||||
width:auto;
|
width:auto;
|
||||||
@ -767,8 +767,8 @@ margin-right:11px;
|
|||||||
|
|
||||||
.vcard .photo {
|
.vcard .photo {
|
||||||
display:inline;
|
display:inline;
|
||||||
margin-right:7px;
|
margin-right:11px;
|
||||||
margin-bottom:7px;
|
margin-bottom:11px;
|
||||||
float:left;
|
float:left;
|
||||||
}
|
}
|
||||||
.vcard .url {
|
.vcard .url {
|
||||||
|
Loading…
Reference in New Issue
Block a user