]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/favorform.php
Show more links work with AJAX-retrieved HTML
[quix0rs-gnu-social.git] / lib / favorform.php
index c07ba6df5997010a5300d1b4b831b10a4201383c..cd956f67ff27ffde0c8876366c21be5fda0ef73d 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @category  Form
- * @package   StatusNet
+ * @package   GNUsocial
  * @author    Evan Prodromou <evan@status.net>
  * @author    Sarven Capadisli <csarven@status.net>
+ * @author    Mikael Nordfeldth <mmn@hethane.se>
  * @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 <evan@status.net>
  * @author   Sarven Capadisli <csarven@status.net>
+ * @author   Mikael Nordfeldth <mmn@hethane.se>
  * @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
  */
@@ -86,17 +84,6 @@ class FavorForm extends Form
         return common_local_url('favor');
     }
 
-    /**
-     * Include a session token for CSRF protection
-     *
-     * @return void
-     */
-    function sessionToken()
-    {
-        $this->out->hidden('token-' . $this->notice->id,
-                           common_session_token());
-    }
-
     /**
      * Legend of the Form
      *
@@ -135,8 +122,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.'));
     }
 
     /**