Plugin Directory

Changeset 3412088


Ignore:
Timestamp:
12/05/2025 11:08:46 AM (8 weeks ago)
Author:
podpirate
Message:

Release 1.5.22

Location:
wp-access-areas
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-access-areas/tags/1.5.22/.wp-release-info.json

    r3362334 r3412088  
    22  "id": "https://github.com/mcguffin/wp-access-areas/raw/master/.wp-release-info.json",
    33  "slug": "wp-access-areas",
    4   "version": "1.5.21",
     4  "version": "1.5.22",
    55  "url": "http://wordpress.org/plugins/wp-access-areas/",
    6   "package": "https://github.com/mcguffin/wp-access-areas/releases/download/1.5.21/wp-access-areas.zip",
    7   "tested": "6.0",
     6  "package": "https://github.com/mcguffin/wp-access-areas/releases/download/1.5.22/wp-access-areas.zip",
     7  "tested": "6.9",
    88  "requires_php": "5.6"
    99}
  • wp-access-areas/tags/1.5.22/README.txt

    r3362334 r3412088  
    55Requires at least: 4.6
    66Requires PHP: 5.6
    7 Tested up to: 6.0
    8 Stable tag: 1.5.21
     7Tested up to: 6.9
     8Stable tag: 1.5.22
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393
    9494== Changelog ==
     95
     96= 1.5.22 =
     97 - Fix: _load_textdomain_just_in_time warning
    9598
    9699= 1.5.21 =
  • wp-access-areas/tags/1.5.22/inc/class-wpaa_posts.php

    r3362334 r3412088  
    358358            $fmt = array_fill( 0, count( $caps ), '%s' );
    359359
    360             $add_where = $wpdb->prepare(
    361                 " {$table_name}post_view_cap IN (" . implode( ',', $fmt ) . ")", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
     360            $add_where = $wpdb->prepare( 
     361                " {$table_name}post_view_cap IN (" . implode( ',', $fmt ) . ")", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared,WordPress.DB.PreparedSQL.NotPrepared
    362362                ...$caps
    363363            );
  • wp-access-areas/tags/1.5.22/inc/class-wpaa_settings.php

    r3362334 r3412088  
    1515        private static $role_caps;
    1616
     17        private static function get_role_caps() {
     18            if ( ! isset( self::$role_caps ) ) {
     19                self::$role_caps = array(
     20                    'wpaa_set_view_cap'    => __( 'Change View Access', 'wp-access-areas' ),
     21                    'wpaa_set_edit_cap'    => __( 'Change Edit Access', 'wp-access-areas' ),
     22                    'wpaa_set_comment_cap' => __( 'Change Comment Access', 'wp-access-areas' ),
     23                );
     24            }
     25            return self::$role_caps;
     26        }
     27
    1728        public static function init() {
    1829            global $wp_post_statuses;
    19             self::$role_caps = array(
    20                 'wpaa_set_view_cap'    => __( 'Change View Access', 'wp-access-areas' ),
    21                 'wpaa_set_edit_cap'    => __( 'Change Edit Access', 'wp-access-areas' ),
    22                 'wpaa_set_comment_cap' => __( 'Change Comment Access', 'wp-access-areas' ),
    23             );
     30
     31
    2432            add_option( 'wpaa_default_behavior', '404' );
    2533            add_option( 'wpaa_fallback_page', 0 );
     
    131139
    132140                foreach ( $input['grant_cap'] as $role_slug => $cap ) {
    133                     if ( 'administrator' != $role_slug && array_key_exists( $cap, self::$role_caps ) ) {
     141                    if ( 'administrator' != $role_slug && array_key_exists( $cap, self::get_role_caps() ) ) {
    134142                        $role = get_role( $role_slug );
    135143                        if ( ! $role || $role->has_cap( $cap ) ) {
     
    142150                foreach ( $input['revoke_cap'] as $role_slug => $cap ) {
    143151
    144                     if ( 'administrator' != $role_slug && array_key_exists( $cap, self::$role_caps ) ) {
     152                    if ( 'administrator' != $role_slug && array_key_exists( $cap, self::get_role_caps() ) ) {
    145153                        $role = get_role( $role_slug );
    146154
     
    349357                                </th>
    350358                <?php
    351                 foreach ( self::$role_caps as $cap => $label ) {
     359                foreach ( self::get_role_caps() as $cap => $label ) {
    352360                    ?>
    353361                                    <th class="manage-column">
     
    379387                                    </th>
    380388                                <?php
    381                                 foreach ( array_keys( self::$role_caps ) as $cap ) {
     389                                foreach ( array_keys( self::get_role_caps() ) as $cap ) {
    382390                                    ?>
    383391                                        <td>
  • wp-access-areas/tags/1.5.22/languages/wp-access-areas.pot

    r3362334 r3412088  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Access Areas for WordPress 1.5.21\n"
     5"Project-Id-Version: Access Areas for WordPress 1.5.22\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-access-areas\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-09-16T10:43:43+02:00\n"
     12"POT-Creation-Date: 2025-12-05T12:08:19+01:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    167167
    168168#: inc/class-wpaa_editpost.php:366
    169 #: inc/class-wpaa_settings.php:443
     169#: inc/class-wpaa_settings.php:451
    170170msgid "If somebody tries to view a restricted post directly:"
    171171msgstr ""
     
    225225msgstr ""
    226226
    227 #: inc/class-wpaa_settings.php:66
     227#: inc/class-wpaa_settings.php:74
    228228msgid "WP Access Areas:"
    229229msgstr ""
    230230
    231 #: inc/class-wpaa_settings.php:70
     231#: inc/class-wpaa_settings.php:78
    232232msgid "Something looks wrong with your Posts table."
    233233msgstr ""
    234234
    235 #: inc/class-wpaa_settings.php:82
     235#: inc/class-wpaa_settings.php:90
    236236msgid "Please fix it for me"
    237237msgstr ""
    238238
    239 #: inc/class-wpaa_settings.php:169
     239#: inc/class-wpaa_settings.php:177
    240240msgid "Access Settings"
    241241msgstr ""
    242242
    243 #: inc/class-wpaa_settings.php:180
     243#: inc/class-wpaa_settings.php:188
    244244msgid "Restricted Access Behavior"
    245245msgstr ""
    246246
    247 #: inc/class-wpaa_settings.php:182
     247#: inc/class-wpaa_settings.php:190
    248248msgid "Default Behaviour"
    249249msgstr ""
    250250
    251 #: inc/class-wpaa_settings.php:183
     251#: inc/class-wpaa_settings.php:191
    252252msgid "Default Fallback Page"
    253253msgstr ""
    254254
    255 #: inc/class-wpaa_settings.php:185
     255#: inc/class-wpaa_settings.php:193
    256256msgid "Access Defaults for new Posts"
    257257msgstr ""
    258258
    259 #: inc/class-wpaa_settings.php:186
     259#: inc/class-wpaa_settings.php:194
    260260msgid "Default Access:"
    261261msgstr ""
    262262
    263 #: inc/class-wpaa_settings.php:188
     263#: inc/class-wpaa_settings.php:196
    264264msgid "Posts defaults"
    265265msgstr ""
    266266
    267 #: inc/class-wpaa_settings.php:189
     267#: inc/class-wpaa_settings.php:197
    268268msgid "Default Post Status"
    269269msgstr ""
    270270
    271 #: inc/class-wpaa_settings.php:190
     271#: inc/class-wpaa_settings.php:198
    272272msgid "Role Capabilities"
    273273msgstr ""
    274274
    275 #: inc/class-wpaa_settings.php:194
     275#: inc/class-wpaa_settings.php:202
    276276msgid "You can also set these Options for each post individually."
    277277msgstr ""
    278278
    279 #: inc/class-wpaa_settings.php:199
     279#: inc/class-wpaa_settings.php:207
    280280msgid "Default settings for newly created posts."
    281281msgstr ""
    282282
    283 #: inc/class-wpaa_settings.php:206
     283#: inc/class-wpaa_settings.php:214
    284284msgid "Access Areas Settings"
    285285msgstr ""
    286286
    287 #: inc/class-wpaa_settings.php:213
     287#: inc/class-wpaa_settings.php:221
    288288msgid "Save Changes"
    289289msgstr ""
    290290
    291 #: inc/class-wpaa_settings.php:244
     291#: inc/class-wpaa_settings.php:252
    292292msgid "Post Type"
    293293msgstr ""
    294294
    295 #: inc/class-wpaa_settings.php:248
     295#: inc/class-wpaa_settings.php:256
    296296msgid "Reading"
    297297msgstr ""
    298298
    299 #: inc/class-wpaa_settings.php:252
     299#: inc/class-wpaa_settings.php:260
    300300msgid "Edit"
    301301msgstr ""
    302302
    303 #: inc/class-wpaa_settings.php:256
     303#: inc/class-wpaa_settings.php:264
    304304msgid "Post Comment"
    305305msgstr ""
    306306
    307 #: inc/class-wpaa_settings.php:342
     307#: inc/class-wpaa_settings.php:350
    308308msgid "This table shows which Roles are allowed to set the ‘Who can view’, ‘Who can edit’ and ‘Who can comment’ properties."
    309309msgstr ""
    310310
    311 #: inc/class-wpaa_settings.php:348
     311#: inc/class-wpaa_settings.php:356
    312312msgid "Role"
    313313msgstr ""
    314314
    315 #: inc/class-wpaa_settings.php:389
     315#: inc/class-wpaa_settings.php:397
    316316msgid "Forbid"
    317317msgstr ""
    318318
    319 #: inc/class-wpaa_settings.php:395
     319#: inc/class-wpaa_settings.php:403
    320320msgid "Allow"
    321321msgstr ""
    322322
    323 #: inc/class-wpaa_settings.php:414
     323#: inc/class-wpaa_settings.php:422
    324324msgid "If you are running a role editor plugin such as <a href=\"https://wordpress.org/plugins/user-role-editor/\">User Role editor by Vladimir Garagulya</a> or <a href=\"https://wordpress.org/plugins/wpfront-user-role-editor/\">WPFront User Role Editor by Syam Mohan</a> you can do the same as here by assigning the custom capabilites <code>wpaa_set_view_cap</code>, <code>wpaa_set_edit_cap</code> and <code>wpaa_set_comment_cap</code>."
    325325msgstr ""
    326326
    327 #: inc/class-wpaa_settings.php:419
     327#: inc/class-wpaa_settings.php:427
    328328msgid "By disabling the role capabilities feature you will allow everybody who can at least publish a post to edit the access properties as well."
    329329msgstr ""
    330330
    331 #: inc/class-wpaa_settings.php:423
     331#: inc/class-wpaa_settings.php:431
    332332msgid "Disable Role Capabilities"
    333333msgstr ""
    334334
    335 #: inc/class-wpaa_settings.php:430
     335#: inc/class-wpaa_settings.php:438
    336336msgid "By default everybody who can publish an entry can also edit the access properties such as ‘Who can view’ or ‘Who can edit’.<br /> If this is too generous for you then click on the button below."
    337337msgstr ""
    338338
    339 #: inc/class-wpaa_settings.php:434
     339#: inc/class-wpaa_settings.php:442
    340340msgid "Enable Role Capabilities"
    341341msgstr ""
    342342
    343 #: inc/class-wpaa_settings.php:486
     343#: inc/class-wpaa_settings.php:494
    344344msgid "Don‘t change"
    345345msgstr ""
    346346
    347 #: inc/class-wpaa_settings.php:500
     347#: inc/class-wpaa_settings.php:508
    348348msgid "Set post status of assigned posts after an Access Area has been deleted."
    349349msgstr ""
  • wp-access-areas/tags/1.5.22/wp-access-areas.php

    r3362334 r3412088  
    1010Description: Lets you define Access Areas and assign them to Posts, Pages and Custom Post types. Through Access Areas you can fine-tune who can view, edit or comment on your posts.
    1111Author: Jörn Lund
    12 Version: 1.5.21
     12Version: 1.5.22
    1313Author URI: https://github.com/mcguffin/
    1414Text Domain: wp-access-areas
  • wp-access-areas/trunk/.wp-release-info.json

    r3362334 r3412088  
    22  "id": "https://github.com/mcguffin/wp-access-areas/raw/master/.wp-release-info.json",
    33  "slug": "wp-access-areas",
    4   "version": "1.5.21",
     4  "version": "1.5.22",
    55  "url": "http://wordpress.org/plugins/wp-access-areas/",
    6   "package": "https://github.com/mcguffin/wp-access-areas/releases/download/1.5.21/wp-access-areas.zip",
    7   "tested": "6.0",
     6  "package": "https://github.com/mcguffin/wp-access-areas/releases/download/1.5.22/wp-access-areas.zip",
     7  "tested": "6.9",
    88  "requires_php": "5.6"
    99}
  • wp-access-areas/trunk/README.txt

    r3362334 r3412088  
    55Requires at least: 4.6
    66Requires PHP: 5.6
    7 Tested up to: 6.0
    8 Stable tag: 1.5.21
     7Tested up to: 6.9
     8Stable tag: 1.5.22
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393
    9494== Changelog ==
     95
     96= 1.5.22 =
     97 - Fix: _load_textdomain_just_in_time warning
    9598
    9699= 1.5.21 =
  • wp-access-areas/trunk/inc/class-wpaa_posts.php

    r3362334 r3412088  
    358358            $fmt = array_fill( 0, count( $caps ), '%s' );
    359359
    360             $add_where = $wpdb->prepare(
    361                 " {$table_name}post_view_cap IN (" . implode( ',', $fmt ) . ")", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
     360            $add_where = $wpdb->prepare( 
     361                " {$table_name}post_view_cap IN (" . implode( ',', $fmt ) . ")", // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared,WordPress.DB.PreparedSQL.NotPrepared
    362362                ...$caps
    363363            );
  • wp-access-areas/trunk/inc/class-wpaa_settings.php

    r3362334 r3412088  
    1515        private static $role_caps;
    1616
     17        private static function get_role_caps() {
     18            if ( ! isset( self::$role_caps ) ) {
     19                self::$role_caps = array(
     20                    'wpaa_set_view_cap'    => __( 'Change View Access', 'wp-access-areas' ),
     21                    'wpaa_set_edit_cap'    => __( 'Change Edit Access', 'wp-access-areas' ),
     22                    'wpaa_set_comment_cap' => __( 'Change Comment Access', 'wp-access-areas' ),
     23                );
     24            }
     25            return self::$role_caps;
     26        }
     27
    1728        public static function init() {
    1829            global $wp_post_statuses;
    19             self::$role_caps = array(
    20                 'wpaa_set_view_cap'    => __( 'Change View Access', 'wp-access-areas' ),
    21                 'wpaa_set_edit_cap'    => __( 'Change Edit Access', 'wp-access-areas' ),
    22                 'wpaa_set_comment_cap' => __( 'Change Comment Access', 'wp-access-areas' ),
    23             );
     30
     31
    2432            add_option( 'wpaa_default_behavior', '404' );
    2533            add_option( 'wpaa_fallback_page', 0 );
     
    131139
    132140                foreach ( $input['grant_cap'] as $role_slug => $cap ) {
    133                     if ( 'administrator' != $role_slug && array_key_exists( $cap, self::$role_caps ) ) {
     141                    if ( 'administrator' != $role_slug && array_key_exists( $cap, self::get_role_caps() ) ) {
    134142                        $role = get_role( $role_slug );
    135143                        if ( ! $role || $role->has_cap( $cap ) ) {
     
    142150                foreach ( $input['revoke_cap'] as $role_slug => $cap ) {
    143151
    144                     if ( 'administrator' != $role_slug && array_key_exists( $cap, self::$role_caps ) ) {
     152                    if ( 'administrator' != $role_slug && array_key_exists( $cap, self::get_role_caps() ) ) {
    145153                        $role = get_role( $role_slug );
    146154
     
    349357                                </th>
    350358                <?php
    351                 foreach ( self::$role_caps as $cap => $label ) {
     359                foreach ( self::get_role_caps() as $cap => $label ) {
    352360                    ?>
    353361                                    <th class="manage-column">
     
    379387                                    </th>
    380388                                <?php
    381                                 foreach ( array_keys( self::$role_caps ) as $cap ) {
     389                                foreach ( array_keys( self::get_role_caps() ) as $cap ) {
    382390                                    ?>
    383391                                        <td>
  • wp-access-areas/trunk/languages/wp-access-areas.pot

    r3362334 r3412088  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Access Areas for WordPress 1.5.21\n"
     5"Project-Id-Version: Access Areas for WordPress 1.5.22\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-access-areas\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-09-16T10:43:43+02:00\n"
     12"POT-Creation-Date: 2025-12-05T12:08:19+01:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    167167
    168168#: inc/class-wpaa_editpost.php:366
    169 #: inc/class-wpaa_settings.php:443
     169#: inc/class-wpaa_settings.php:451
    170170msgid "If somebody tries to view a restricted post directly:"
    171171msgstr ""
     
    225225msgstr ""
    226226
    227 #: inc/class-wpaa_settings.php:66
     227#: inc/class-wpaa_settings.php:74
    228228msgid "WP Access Areas:"
    229229msgstr ""
    230230
    231 #: inc/class-wpaa_settings.php:70
     231#: inc/class-wpaa_settings.php:78
    232232msgid "Something looks wrong with your Posts table."
    233233msgstr ""
    234234
    235 #: inc/class-wpaa_settings.php:82
     235#: inc/class-wpaa_settings.php:90
    236236msgid "Please fix it for me"
    237237msgstr ""
    238238
    239 #: inc/class-wpaa_settings.php:169
     239#: inc/class-wpaa_settings.php:177
    240240msgid "Access Settings"
    241241msgstr ""
    242242
    243 #: inc/class-wpaa_settings.php:180
     243#: inc/class-wpaa_settings.php:188
    244244msgid "Restricted Access Behavior"
    245245msgstr ""
    246246
    247 #: inc/class-wpaa_settings.php:182
     247#: inc/class-wpaa_settings.php:190
    248248msgid "Default Behaviour"
    249249msgstr ""
    250250
    251 #: inc/class-wpaa_settings.php:183
     251#: inc/class-wpaa_settings.php:191
    252252msgid "Default Fallback Page"
    253253msgstr ""
    254254
    255 #: inc/class-wpaa_settings.php:185
     255#: inc/class-wpaa_settings.php:193
    256256msgid "Access Defaults for new Posts"
    257257msgstr ""
    258258
    259 #: inc/class-wpaa_settings.php:186
     259#: inc/class-wpaa_settings.php:194
    260260msgid "Default Access:"
    261261msgstr ""
    262262
    263 #: inc/class-wpaa_settings.php:188
     263#: inc/class-wpaa_settings.php:196
    264264msgid "Posts defaults"
    265265msgstr ""
    266266
    267 #: inc/class-wpaa_settings.php:189
     267#: inc/class-wpaa_settings.php:197
    268268msgid "Default Post Status"
    269269msgstr ""
    270270
    271 #: inc/class-wpaa_settings.php:190
     271#: inc/class-wpaa_settings.php:198
    272272msgid "Role Capabilities"
    273273msgstr ""
    274274
    275 #: inc/class-wpaa_settings.php:194
     275#: inc/class-wpaa_settings.php:202
    276276msgid "You can also set these Options for each post individually."
    277277msgstr ""
    278278
    279 #: inc/class-wpaa_settings.php:199
     279#: inc/class-wpaa_settings.php:207
    280280msgid "Default settings for newly created posts."
    281281msgstr ""
    282282
    283 #: inc/class-wpaa_settings.php:206
     283#: inc/class-wpaa_settings.php:214
    284284msgid "Access Areas Settings"
    285285msgstr ""
    286286
    287 #: inc/class-wpaa_settings.php:213
     287#: inc/class-wpaa_settings.php:221
    288288msgid "Save Changes"
    289289msgstr ""
    290290
    291 #: inc/class-wpaa_settings.php:244
     291#: inc/class-wpaa_settings.php:252
    292292msgid "Post Type"
    293293msgstr ""
    294294
    295 #: inc/class-wpaa_settings.php:248
     295#: inc/class-wpaa_settings.php:256
    296296msgid "Reading"
    297297msgstr ""
    298298
    299 #: inc/class-wpaa_settings.php:252
     299#: inc/class-wpaa_settings.php:260
    300300msgid "Edit"
    301301msgstr ""
    302302
    303 #: inc/class-wpaa_settings.php:256
     303#: inc/class-wpaa_settings.php:264
    304304msgid "Post Comment"
    305305msgstr ""
    306306
    307 #: inc/class-wpaa_settings.php:342
     307#: inc/class-wpaa_settings.php:350
    308308msgid "This table shows which Roles are allowed to set the ‘Who can view’, ‘Who can edit’ and ‘Who can comment’ properties."
    309309msgstr ""
    310310
    311 #: inc/class-wpaa_settings.php:348
     311#: inc/class-wpaa_settings.php:356
    312312msgid "Role"
    313313msgstr ""
    314314
    315 #: inc/class-wpaa_settings.php:389
     315#: inc/class-wpaa_settings.php:397
    316316msgid "Forbid"
    317317msgstr ""
    318318
    319 #: inc/class-wpaa_settings.php:395
     319#: inc/class-wpaa_settings.php:403
    320320msgid "Allow"
    321321msgstr ""
    322322
    323 #: inc/class-wpaa_settings.php:414
     323#: inc/class-wpaa_settings.php:422
    324324msgid "If you are running a role editor plugin such as <a href=\"https://wordpress.org/plugins/user-role-editor/\">User Role editor by Vladimir Garagulya</a> or <a href=\"https://wordpress.org/plugins/wpfront-user-role-editor/\">WPFront User Role Editor by Syam Mohan</a> you can do the same as here by assigning the custom capabilites <code>wpaa_set_view_cap</code>, <code>wpaa_set_edit_cap</code> and <code>wpaa_set_comment_cap</code>."
    325325msgstr ""
    326326
    327 #: inc/class-wpaa_settings.php:419
     327#: inc/class-wpaa_settings.php:427
    328328msgid "By disabling the role capabilities feature you will allow everybody who can at least publish a post to edit the access properties as well."
    329329msgstr ""
    330330
    331 #: inc/class-wpaa_settings.php:423
     331#: inc/class-wpaa_settings.php:431
    332332msgid "Disable Role Capabilities"
    333333msgstr ""
    334334
    335 #: inc/class-wpaa_settings.php:430
     335#: inc/class-wpaa_settings.php:438
    336336msgid "By default everybody who can publish an entry can also edit the access properties such as ‘Who can view’ or ‘Who can edit’.<br /> If this is too generous for you then click on the button below."
    337337msgstr ""
    338338
    339 #: inc/class-wpaa_settings.php:434
     339#: inc/class-wpaa_settings.php:442
    340340msgid "Enable Role Capabilities"
    341341msgstr ""
    342342
    343 #: inc/class-wpaa_settings.php:486
     343#: inc/class-wpaa_settings.php:494
    344344msgid "Don‘t change"
    345345msgstr ""
    346346
    347 #: inc/class-wpaa_settings.php:500
     347#: inc/class-wpaa_settings.php:508
    348348msgid "Set post status of assigned posts after an Access Area has been deleted."
    349349msgstr ""
  • wp-access-areas/trunk/wp-access-areas.php

    r3362334 r3412088  
    1010Description: Lets you define Access Areas and assign them to Posts, Pages and Custom Post types. Through Access Areas you can fine-tune who can view, edit or comment on your posts.
    1111Author: Jörn Lund
    12 Version: 1.5.21
     12Version: 1.5.22
    1313Author URI: https://github.com/mcguffin/
    1414Text Domain: wp-access-areas
Note: See TracChangeset for help on using the changeset viewer.