Activity Log - Version 2.1.15

Version Description

  • Tested up to WordPress v4.1
  • Change plugin name to "Activity Log"
Download this release

Release Info

Developer KingYes
Plugin Icon 128x128 Activity Log
Version 2.1.15
Comparing to
See all releases

Code changes from version 2.1.14 to 2.1.15

aryo-activity-log.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://wordpress.org/plugins/aryo-activity-log/
5
  Description: Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site. e.g. post was deleted, plugin was activated, user logged in or logged out - it's all these for you to see.
6
  Author: Yakir Sitbon, Maor Chasen, Ariel Klikstein
7
  Author URI: http://www.aryodigital.com
8
- Version: 2.1.14
9
  Text Domain: aryo-aal
10
  Domain Path: /language/
11
  License: GPLv2 or later
5
  Description: Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site. e.g. post was deleted, plugin was activated, user logged in or logged out - it's all these for you to see.
6
  Author: Yakir Sitbon, Maor Chasen, Ariel Klikstein
7
  Author URI: http://www.aryodigital.com
8
+ Version: 2.1.15
9
  Text Domain: aryo-aal
10
  Domain Path: /language/
11
  License: GPLv2 or later
classes/class-aal-maintenance.php CHANGED
@@ -81,7 +81,7 @@ class AAL_Maintenance {
81
  dbDelta( $sql );
82
 
83
  $admin_role = get_role( 'administrator' );
84
- if ( ! $admin_role->has_cap( 'view_all_aryo_activity_log' ) )
85
  $admin_role->add_cap( 'view_all_aryo_activity_log' );
86
 
87
  update_option( 'activity_log_db_version', '1.0' );
81
  dbDelta( $sql );
82
 
83
  $admin_role = get_role( 'administrator' );
84
+ if ( $admin_role instanceof WP_Role && ! $admin_role->has_cap( 'view_all_aryo_activity_log' ) )
85
  $admin_role->add_cap( 'view_all_aryo_activity_log' );
86
 
87
  update_option( 'activity_log_db_version', '1.0' );
language/aryo-aal.pot CHANGED
@@ -6,9 +6,9 @@
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: aryo-activity-log 2.1.14\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2014-12-14 14:55+0200\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
+ "Project-Id-Version: aryo-activity-log 2.1.15\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2015-02-08 21:29+0200\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
- === ARYO Activity Log ===
2
  Contributors: pojo.me, KingYes, ariel.k, maor
3
  Tags: administration, activity, event, monitor, multisite, multi-users, log, logger, audit log, stats, security, tracking, woocommerce, notifications, email notifications
4
  Requires at least: 3.5
5
- Tested up to: 4.0.1
6
- Stable tag: 2.1.14
7
  License: GPLv2 or later
8
 
9
  Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site.
@@ -56,6 +56,7 @@ If you have tens of users or more, you really can’t know who did it. This plug
56
  * Armenia (hy_AM) - Hayk Jomardyan
57
  * Brazilian Portuguese (pt_BR) - [Criação de Sites](http://www.techload.com.br/criacao-de-sites-ribeirao-preto)
58
  * Turkish (tr_TR) - [Ahmet Kolcu](http://ahmetkolcu.org)
 
59
 
60
  The plugin does not require any kind of setup. It works out of the box (and that’s why we love it too).
61
 
@@ -91,6 +92,10 @@ Would you like to like to contribute to Activity Log? You are more than welcome
91
 
92
  == Changelog ==
93
 
 
 
 
 
94
  = 2.1.14 =
95
  * New! Added translate: Persian (fa_IR) - Thanks to [Promising](http://vwp.ir/)
96
 
1
+ === Activity Log ===
2
  Contributors: pojo.me, KingYes, ariel.k, maor
3
  Tags: administration, activity, event, monitor, multisite, multi-users, log, logger, audit log, stats, security, tracking, woocommerce, notifications, email notifications
4
  Requires at least: 3.5
5
+ Tested up to: 4.1
6
+ Stable tag: 2.1.15
7
  License: GPLv2 or later
8
 
9
  Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site.
56
  * Armenia (hy_AM) - Hayk Jomardyan
57
  * Brazilian Portuguese (pt_BR) - [Criação de Sites](http://www.techload.com.br/criacao-de-sites-ribeirao-preto)
58
  * Turkish (tr_TR) - [Ahmet Kolcu](http://ahmetkolcu.org)
59
+ * Persian (fa_IR) - [Promising](http://vwp.ir/)
60
 
61
  The plugin does not require any kind of setup. It works out of the box (and that’s why we love it too).
62
 
92
 
93
  == Changelog ==
94
 
95
+ = 2.1.15 =
96
+ * Tested up to WordPress v4.1
97
+ * Change plugin name to "Activity Log"
98
+
99
  = 2.1.14 =
100
  * New! Added translate: Persian (fa_IR) - Thanks to [Promising](http://vwp.ir/)
101