Changeset 1836276
- Timestamp:
- 03/08/2018 01:27:26 PM (7 years ago)
- Location:
- aryo-activity-log/trunk
- Files:
-
- 6 edited
-
aryo-activity-log.php (modified) (1 diff)
-
classes/class-aal-activity-log-list-table.php (modified) (2 diffs)
-
hooks/class-aal-hook-attachment.php (modified) (1 diff)
-
hooks/class-aal-hook-comments.php (modified) (1 diff)
-
hooks/class-aal-hook-posts.php (modified) (1 diff)
-
readme.txt (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
aryo-activity-log/trunk/aryo-activity-log.php
r1775635 r1836276 6 6 Author: Yakir Sitbon, Maor Chasen, Ariel Klikstein 7 7 Author URI: http://pojo.me/ 8 Version: 2.4. 08 Version: 2.4.1 9 9 Text Domain: aryo-activity-log 10 10 License: GPLv2 or later -
aryo-activity-log/trunk/classes/class-aal-activity-log-list-table.php
r1775635 r1836276 203 203 204 204 public function column_description( $item ) { 205 $return = $item->object_name;205 $return = esc_html( $item->object_name ); 206 206 207 207 switch ( $item->object_type ) { 208 208 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 ) ); 210 210 break; 211 211 212 212 case 'Taxonomy' : 213 213 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 ) ); 215 215 break; 216 216 … … 225 225 $return = __( 'All', 'aryo-activity-log' ); 226 226 } else { 227 $pt = get_post_type_object( $item->object_name );227 $pt = get_post_type_object( $item->object_name ); 228 228 $return = ! empty( $pt->label ) ? $pt->label : $item->object_name; 229 229 } -
aryo-activity-log/trunk/hooks/class-aal-hook-attachment.php
r868802 r1836276 12 12 'object_subtype' => $post->post_type, 13 13 'object_id' => $attachment_id, 14 'object_name' => get_the_title( $post->ID),14 'object_name' => esc_html( get_the_title( $post->ID ) ), 15 15 ) ); 16 16 } -
aryo-activity-log/trunk/hooks/class-aal-hook-comments.php
r903337 r1836276 12 12 'object_type' => 'Comments', 13 13 '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 ) ), 15 15 'object_id' => $id, 16 16 ) ); -
aryo-activity-log/trunk/hooks/class-aal-hook-posts.php
r1449972 r1836276 5 5 6 6 protected function _draft_or_post_title( $post = 0 ) { 7 $title = get_the_title( $post);7 $title = esc_html( get_the_title( $post ) ); 8 8 9 9 if ( empty( $title ) ) -
aryo-activity-log/trunk/readme.txt
r1775635 r1836276 4 4 Requires at least: 4.4 5 5 Tested up to: 4.9 6 Stable tag: 2.4. 06 Stable tag: 2.4.1 7 7 License: GPLv2 or later 8 8 … … 76 76 77 77 <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.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/pojome/activity-log). Also, if you have any notes about the code, please open a ticket on the issue tracker. 79 79 80 80 == Installation == … … 106 106 == Changelog == 107 107 108 = 2.4.1 = 109 * Fix : Escape title before saving to database 110 108 111 = 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)) 110 113 111 114 = 2.3.6 = … … 130 133 = 2.3.0 = 131 134 * 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)) 134 137 * Tweak! - Allow some ajax requests just for admin 135 138 … … 156 159 157 160 = 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)) 159 162 * Tweak! - Added more actions/types in notification 160 163 … … 166 169 167 170 = 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)) 169 172 170 173 = 2.2.3 = … … 196 199 197 200 = 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)) 199 202 200 203 = 2.1.12 = … … 209 212 210 213 = 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)) 212 215 * Tested up to WordPress v4.0 213 216 214 217 = 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)) 216 219 217 220 = 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)) 219 222 220 223 = 2.1.6 = … … 222 225 223 226 = 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)) 225 228 226 229 = 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)) 228 231 229 232 = 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)) 231 234 232 235 = 2.1.2 = … … 234 237 235 238 = 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)) 238 241 239 242 = 2.1.0 = … … 246 249 247 250 = 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)) 249 252 250 253 = 2.0.5 =
Note: See TracChangeset
for help on using the changeset viewer.