Plugin Directory

Changeset 1836276


Ignore:
Timestamp:
03/08/2018 01:27:26 PM (7 years ago)
Author:
KingYes
Message:

Upload v2.4.1

Location:
aryo-activity-log/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • aryo-activity-log/trunk/aryo-activity-log.php

    r1775635 r1836276  
    66Author: Yakir Sitbon, Maor Chasen, Ariel Klikstein
    77Author URI: http://pojo.me/
    8 Version: 2.4.0
     8Version: 2.4.1
    99Text Domain: aryo-activity-log
    1010License: GPLv2 or later
  • aryo-activity-log/trunk/classes/class-aal-activity-log-list-table.php

    r1775635 r1836276  
    203203   
    204204    public function column_description( $item ) {
    205         $return = $item->object_name;
     205        $return = esc_html( $item->object_name );
    206206       
    207207        switch ( $item->object_type ) {
    208208            case 'Post' :
    209                 $return = sprintf( '<a href="%s">%s</a>', get_edit_post_link( $item->object_id ), $item->object_name );
     209                $return = sprintf( '<a href="%s">%s</a>', get_edit_post_link( $item->object_id ), esc_html( $item->object_name ) );
    210210                break;
    211211           
    212212            case 'Taxonomy' :
    213213                if ( ! empty( $item->object_id ) )
    214                     $return = sprintf( '<a href="%s">%s</a>', get_edit_term_link( $item->object_id, $item->object_subtype ), $item->object_name );
     214                    $return = sprintf( '<a href="%s">%s</a>', get_edit_term_link( $item->object_id, $item->object_subtype ), esc_html( $item->object_name ) );
    215215                break;
    216216           
     
    225225                    $return = __( 'All', 'aryo-activity-log' );
    226226                } else {
    227                     $pt     = get_post_type_object( $item->object_name );
     227                    $pt = get_post_type_object( $item->object_name );
    228228                    $return = ! empty( $pt->label ) ? $pt->label : $item->object_name;
    229229                }
  • aryo-activity-log/trunk/hooks/class-aal-hook-attachment.php

    r868802 r1836276  
    1212            'object_subtype' => $post->post_type,
    1313            'object_id'      => $attachment_id,
    14             'object_name'    => get_the_title( $post->ID ),
     14            'object_name'    => esc_html( get_the_title( $post->ID ) ),
    1515        ) );
    1616    }
  • aryo-activity-log/trunk/hooks/class-aal-hook-comments.php

    r903337 r1836276  
    1212            'object_type'    => 'Comments',
    1313            'object_subtype' => get_post_type( $comment->comment_post_ID ),
    14             'object_name'    => get_the_title( $comment->comment_post_ID ),
     14            'object_name'    => esc_html( get_the_title( $comment->comment_post_ID ) ),
    1515            'object_id'      => $id,
    1616        ) );
  • aryo-activity-log/trunk/hooks/class-aal-hook-posts.php

    r1449972 r1836276  
    55   
    66    protected function _draft_or_post_title( $post = 0 ) {
    7         $title = get_the_title( $post );
     7        $title = esc_html( get_the_title( $post ) );
    88       
    99        if ( empty( $title ) )
  • aryo-activity-log/trunk/readme.txt

    r1775635 r1836276  
    44Requires at least: 4.4
    55Tested up to: 4.9
    6 Stable tag: 2.4.0
     6Stable tag: 2.4.1
    77License: GPLv2 or later
    88
     
    7676
    7777<h4>Contributions:</h4>
    78 Would you like to like to contribute to Activity Log? You are more than welcome to submit your pull requests on the [GitHub repo](https://github.com/KingYes/wordpress-aryo-activity-log). Also, if you have any notes about the code, please open a ticket on the issue tracker.
     78Would you like to like to contribute to Activity Log? You are more than welcome to submit your pull requests on the [GitHub repo](https://github.com/pojome/activity-log). Also, if you have any notes about the code, please open a ticket on the issue tracker.
    7979
    8080== Installation ==
     
    106106== Changelog ==
    107107
     108= 2.4.1 =
     109* Fix : Escape title before saving to database
     110
    108111= 2.4.0 =
    109 * New! Export your Activity Log data records to CSV ([#70](https://github.com/pojome/elementor/issues/70))
     112* New! Export your Activity Log data records to CSV ([#70](https://github.com/pojome/activity-log/issues/70))
    110113
    111114= 2.3.6 =
     
    130133= 2.3.0 =
    131134* Tweak! - All translates moved to [GlotPress](https://translate.wordpress.org/projects/wp-plugins/aryo-activity-log)
    132 * Tweak! - Added restore status for Posts ([#46](https://github.com/KingYes/wordpress-aryo-activity-log/issues/46))
    133 * Tweak! - A11y changes for WordPress 4.4 which requires `h1` tags ([#84](https://github.com/KingYes/wordpress-aryo-activity-log/issues/84))
     135* Tweak! - Added restore status for Posts ([#46](https://github.com/pojome/activity-log/issues/46))
     136* Tweak! - A11y changes for WordPress 4.4 which requires `h1` tags ([#84](https://github.com/pojome/activity-log/issues/84))
    134137* Tweak! - Allow some ajax requests just for admin
    135138
     
    156159
    157160= 2.2.6 =
    158 * Tweak! - Added sort by IP address ([#77](https://github.com/KingYes/wordpress-aryo-activity-log/issues/77))
     161* Tweak! - Added sort by IP address ([#77](https://github.com/pojome/activity-log/issues/77))
    159162* Tweak! - Added more actions/types in notification
    160163
     
    166169
    167170= 2.2.4 =
    168 * New! - Added translate: Czech (cs_CZ) - Thanks to Martin Kokeš ([#76](https://github.com/KingYes/wordpress-aryo-activity-log/pull/76))
     171* New! - Added translate: Czech (cs_CZ) - Thanks to Martin Kokeš ([#76](https://github.com/pojome/activity-log/pull/76))
    169172
    170173= 2.2.3 =
     
    196199
    197200= 2.1.13 =
    198 * New! Added filter by User Roles ([#67](https://github.com/KingYes/wordpress-aryo-activity-log/issues/67))
     201* New! Added filter by User Roles ([#67](https://github.com/pojome/activity-log/issues/67))
    199202
    200203= 2.1.12 =
     
    209212
    210213= 2.1.9 =
    211 * New! Store all WooCommerce settings ([#62](https://github.com/KingYes/wordpress-aryo-activity-log/issues/62))
     214* New! Store all WooCommerce settings ([#62](https://github.com/pojome/activity-log/issues/62))
    212215* Tested up to WordPress v4.0
    213216
    214217= 2.1.8 =
    215 * New! Now tracking when plugins installed and updated ([#59](https://github.com/KingYes/wordpress-aryo-activity-log/pull/59) and [#43](https://github.com/KingYes/wordpress-aryo-activity-log/issues/43))
     218* New! Now tracking when plugins installed and updated ([#59](https://github.com/pojome/activity-log/pull/59) and [#43](https://github.com/pojome/activity-log/issues/43))
    216219
    217220= 2.1.7 =
    218 * New! Now tracking when user download export file from the site ([#58](https://github.com/KingYes/wordpress-aryo-activity-log/issues/58) and [#63](https://github.com/KingYes/wordpress-aryo-activity-log/pull/63))
     221* New! Now tracking when user download export file from the site ([#58](https://github.com/pojome/activity-log/issues/58) and [#63](https://github.com/pojome/activity-log/pull/63))
    219222
    220223= 2.1.6 =
     
    222225
    223226= 2.1.5 =
    224 * New! Now tracking when theme installed, updated, deleted ([#44](https://github.com/KingYes/wordpress-aryo-activity-log/issues/44))
     227* New! Now tracking when theme installed, updated, deleted ([#44](https://github.com/pojome/activity-log/issues/44))
    225228
    226229= 2.1.4 =
    227 * Fixed! Store real IP address in Proxy too ([#53](https://github.com/KingYes/wordpress-aryo-activity-log/issues/53))
     230* Fixed! Store real IP address in Proxy too ([#53](https://github.com/pojome/activity-log/issues/53))
    228231
    229232= 2.1.3 =
    230 * New! Added translate: Dutch (nl_NL) - Thanks to [Tom Aalbers](http://www.dtaalbers.com/) ([#55](https://github.com/KingYes/wordpress-aryo-activity-log/issues/55))
     233* New! Added translate: Dutch (nl_NL) - Thanks to [Tom Aalbers](http://www.dtaalbers.com/) ([#55](https://github.com/pojome/activity-log/issues/55))
    231234
    232235= 2.1.2 =
     
    234237
    235238= 2.1.1 =
    236 * New! Track about WordPress core update (manual or auto-updated) ([#41](https://github.com/KingYes/wordpress-aryo-activity-log/issues/41))
    237 * New! Track post comments (created, approved, unproved, trashed, untrashed, spammed, unspammed, deleted) ([#42](https://github.com/KingYes/wordpress-aryo-activity-log/issues/42))
     239* New! Track about WordPress core update (manual or auto-updated) ([#41](https://github.com/pojome/activity-log/issues/41))
     240* New! Track post comments (created, approved, unproved, trashed, untrashed, spammed, unspammed, deleted) ([#42](https://github.com/pojome/activity-log/issues/42))
    238241
    239242= 2.1.0 =
     
    246249
    247250= 2.0.6 =
    248 * Fixed! Random fatal error ([topic](https://github.com/KingYes/wordpress-aryo-activity-log/issues/32))
     251* Fixed! Random fatal error ([topic](https://github.com/pojome/activity-log/issues/32))
    249252
    250253= 2.0.5 =
Note: See TracChangeset for help on using the changeset viewer.