X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Ffavorform.php;h=ebf1b5ffc99d98d110c55d2439051feed0b8cd25;hb=d2104b89d93d40bf68884055196340465f3f6497;hp=956cc896a222a4880012e694be7789408b771350;hpb=9573f725c12e291e4bd3e3156557e41a10753d76;p=quix0rs-gnu-social.git diff --git a/lib/favorform.php b/lib/favorform.php index 956cc896a2..ebf1b5ffc9 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -20,29 +20,27 @@ * along with this program. If not, see . * * @category Form - * @package StatusNet + * @package GNUsocial * @author Evan Prodromou * @author Sarven Capadisli + * @author Mikael Nordfeldth * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ + * @link http://www.gnu.org/software/social/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} - -require_once INSTALLDIR.'/lib/form.php'; +if (!defined('GNUSOCIAL')) { exit(1); } /** * Form for favoring a notice * * @category Form - * @package StatusNet + * @package GNUsocial * @author Evan Prodromou * @author Sarven Capadisli + * @author Mikael Nordfeldth * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ + * @link http://www.gnu.org/software/social/ * * @see DisfavorForm */ @@ -94,7 +92,8 @@ class FavorForm extends Form function sessionToken() { $this->out->hidden('token-' . $this->notice->id, - common_session_token()); + common_session_token(), + 'token'); } /** @@ -135,8 +134,8 @@ class FavorForm extends Form _m('BUTTON','Favor'), 'submit', null, - // TRANS: Title for button text for adding the favourite status to a notice. - _('Favor this notice')); + // TRANS: Button title for adding the favourite status to a notice. + _('Add this notice to your list of favorite notices.')); } /** @@ -146,6 +145,6 @@ class FavorForm extends Form */ function formClass() { - return 'form_favor'; + return 'form_favor ajax'; } }