]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
(dis)favor form method call fix
authorsarven <csarven@plantard.controlezvous.ca>
Wed, 21 Jan 2009 02:52:16 +0000 (02:52 +0000)
committersarven <csarven@plantard.controlezvous.ca>
Wed, 21 Jan 2009 02:52:16 +0000 (02:52 +0000)
actions/disfavor.php
actions/favor.php
theme/base/css/display.css

index 3e3e4a5476d48e43743c3807cb07f5df20455fd5..d4a189d196a03563a69893ff840d1d7bd44d436e 100644 (file)
@@ -19,6 +19,8 @@
 
 if (!defined('LACONICA')) { exit(1); }
 
+require_once INSTALLDIR.'/lib/favorform.php';
+
 class DisfavorAction extends Action
 {
 
@@ -74,7 +76,8 @@ class DisfavorAction extends Action
             $this->element('title', null, _('Add to favorites'));
             $this->elementEnd('head');
             $this->elementStart('body');
-            common_favor_form($notice);
+            $favor = new FavorForm($this, $notice);
+            $favor->show();
             $this->elementEnd('body');
             $this->elementEnd('html');
         } else {
index afda93cff29ae109c81a6e287ad797934f7d7814..92756366d911e61f916fab2e542ff972ee04e87e 100644 (file)
@@ -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 {
index f0bf6bfc153f7bac4578a9746e5533c8593efaa4..d2480be14aa436491b650ee5380d8c7abb78cd55 100644 (file)
@@ -706,7 +706,7 @@ float:none;
 }
 .profile #user_profile .user_note,
 .profile #user_profile .user_url {
-margin-left:55px;
+margin-left:59px;
 clear:none;
 display:block;
 width:auto;
@@ -767,8 +767,8 @@ margin-right:11px;
 
 .vcard .photo {
 display:inline;
-margin-right:7px;
-margin-bottom:7px;
+margin-right:11px;
+margin-bottom:11px;
 float:left;
 }
 .vcard .url {