Plugin Directory

Changeset 744135

Timestamp:
07/21/2013 10:40:35 PM (11 years ago)
Author:
tha_sun
Message:

Preparing release 2.1.

Location:
mollom/trunk
Files:
3 added
5 edited

Legend:

Unmodified
Added
Removed
  • mollom/trunk/includes/Admin.php

    r737526 r744135  
    4242    register_setting('mollom', 'mollom_bypass_roles', array('MollomAdmin', 'sanitizeCheckboxesValue'));
    4343    register_setting('mollom', 'mollom_fallback_mode');
     44
    4445
    4546    // Configuration sections.
     
    7576      ),
    7677      'values' => get_option('mollom_checks'),
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
    7788    ));
    7889    add_settings_field('mollom_bypass_roles', __('Bypass roles', MOLLOM_L10N), array('MollomForm', 'printItemsArray'), 'mollom', 'mollom_options', array(
  • mollom/trunk/includes/Entity.php

    r736896 r744135  
    201201    // These parameters should be sent regardless of whether they are empty.
    202202    $data += array(
     203
    203204      'checks' => array_keys(get_option('mollom_checks', array('spam' => 1))),
    204205    );
  • mollom/trunk/includes/EntityComment.php

    r736896 r744135  
    1010 */
    1111class MollomEntityComment extends MollomEntity {
     12
     13
     14
     15
     16
     17
     18
     19
     20
     21
     22
    1223
    1324  /**
     
    6475      return $comment;
    6576    }
     77
     78
     79
    6680    $data = array(
    6781      'authorName' => $comment['comment_author'],
     
    103117
    104118  /**
     119
     120
     121
     122
     123
     124
     125
     126
     127
     128
     129
     130
     131
     132
     133
     134
     135
     136
     137
     138
     139
     140
     141
     142
     143
     144
     145
     146
     147
     148
     149
     150
     151
     152
     153
     154
     155
     156
     157
    105158   * Reacts to comment status changes.
    106159   *
  • mollom/trunk/mollom.php

    r736896 r744135  
    44  Plugin Name: Mollom
    55  Plugin URI: https://mollom.com
    6   Version: 2.0
     6  Version: 2.
    77  Text Domain: mollom
    88  Description: Protects you from spam and unwanted posts. <strong>Get started:</strong> 1) <em>Activate</em>, 2) <a href="https://mollom.com/pricing">Sign up</a> and create API keys, 3) Set them in <a href="options-general.php?page=mollom">settings</a>.
     
    5555// Note the priority argument semantics (4th argument to add_filter/add_action):
    5656//   WordPress $priority == Drupal $weight != Symfony $priority
     57
     58
     59
    5760if (is_admin()) {
    5861  add_action('admin_init', array('MollomAdmin', 'init'));
     
    6972add_action('transition_comment_status', 'mollom_dispatch_hook', 10, 3);
    7073add_action('mollom_moderate_comment', 'mollom_dispatch_hook', 10, 2);
    71 
    72 add_action('init', 'mollom_moderate');
    7374
    7475add_filter('wp_die_handler', 'mollom_die_handler_callback', 100);
     
    158159
    159160/**
     161
     162
     163
     164
     165
     166
     167
    160168 * Init callback; Intercepts a Mollom moderation request.
    161169 */
  • mollom/trunk/readme.txt

    r737526 r744135  
    55Requires at least: 3.1.0
    66Tested up to: 3.5.1
    7 Stable tag: 2.0
     7Stable tag: 2.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020
    2121Mollom is actively used by more than 50,000 sites, including Sony, twitter, MIT, Adobe, Warner Bros Records, LinuxJournal, NBC, and many others.  More than 4,500,000 posts are checked by Mollom _per day_.
     22
     23
     24
     25
     26
     27
     28
    2229
    2330Do you have multiple WordPress and other sites that need moderation?  Mollom's [Content Moderation Platform](http://mollom.com/moderation) is supported out of the box — Save time & moderate them all at once.
     
    43501. Enter them on the Mollom plugin settings page on your site.
    4451
     52
    4553
    4654= Requirements =
     
    6068
    6169
     70
    6271= Compatibility =
    6372
     
    6574
    6675To get the best performance out of Mollom, ensure to disable all other spam filter, honeypot, and CAPTCHA plugins, including the default Akismet plugin that ships with WordPress.
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
     100
     101
     102
     103
     104
     105
     106
     107
     108
     109
     110
     111
     112
     113
     114
     115
     116
     117
     118
     119
     120
     121
     122
     123
     124
     125
     126
     127
     128
     129
    67130
    68131
     
    75138== Changelog ==
    76139
     140
     141
     142
     143
     144
     145
     146
    77147= 2.0 =
    78148
Note: See TracChangeset for help on using the changeset viewer.