Changeset 907578
- Timestamp:
- 05/04/2014 03:21:50 AM (12 years ago)
- Location:
- bluetrait-event-viewer/trunk
- Files:
-
- 5 edited
-
btev.class.php (modified) (4 diffs)
-
btev.php (modified) (1 diff)
-
btev_apptrack.class.php (modified) (1 diff)
-
btev_upgrade.class.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bluetrait-event-viewer/trunk/btev.class.php
r593585 r907578 2 2 /* 3 3 Bluetrait Event Viewer 2 Class 4 Copyright Dalegroup Pty Ltd 201 24 Copyright Dalegroup Pty Ltd 2014 5 5 support@dalegroup.net 6 6 */ … … 14 14 global $wpdb; 15 15 16 $this->vars['version'] = '2.0. 1';17 $this->vars['db_version'] = 2;16 $this->vars['version'] = '2.0.2'; 17 $this->vars['db_version'] = 3; 18 18 $this->vars['tables']['events'] = $wpdb->prefix . 'btev_events'; 19 19 $this->vars['tables']['users'] = $wpdb->prefix . 'users'; … … 1227 1227 } 1228 1228 ?> 1229 <p class="submit"><input type="submit" name="submit" value="Clear Logs" /></p>1229 <p><input type="submit" name="submit" value="Clear Logs" class="button-secondary delete" /></p> 1230 1230 </form> 1231 1231 </div> … … 1531 1531 } 1532 1532 ?> 1533 <p class="submit"><input type="submit" name="submit_uninstall" value="Uninstall" /> (This removes all BTEV database entries, including events and settings)</p>1533 <p><input type="submit" name="submit_uninstall" value="Uninstall" class="button-secondary delete" /> (This removes all BTEV database entries, including events and settings)</p> 1534 1534 </form> 1535 1535 </div> -
bluetrait-event-viewer/trunk/btev.php
r593585 r907578 4 4 Plugin URI: http://wordpress.org/extend/plugins/bluetrait-event-viewer/ 5 5 Description: BTEV monitors events that occur in your WordPress install. 6 Version: 2.0. 16 Version: 2.0.2 7 7 Author: Michael Dale 8 8 Author URI: http://michaeldale.com.au/ -
bluetrait-event-viewer/trunk/btev_apptrack.class.php
r586842 r907578 1 1 <?php 2 2 /* 3 AppTrack Class4 Copyright Dalegroup Pty Ltd 201 23 Bluetrait AppTrack Class (version update checker) 4 Copyright Dalegroup Pty Ltd 2014 5 5 support@dalegroup.net 6 6 */ -
bluetrait-event-viewer/trunk/btev_upgrade.class.php
r593585 r907578 2 2 /* 3 3 Bluetrait Event Viewer Upgrade Class 4 Copyright Dalegroup Pty Ltd 201 24 Copyright Dalegroup Pty Ltd 2014 5 5 support@dalegroup.net 6 6 */ … … 83 83 84 84 $this->btev->set_config('db_version', 2); 85 $this->btev->set_config('version', $version); 86 87 $this->btev->save_config(); 88 89 $this->btev->trigger_error('BTEV database upgraded to version '. $version, E_USER_NOTICE); 90 } 91 92 private function dbup_3() { 93 94 $version = '2.0.2'; 95 96 $this->btev->set_config('db_version', 3); 85 97 $this->btev->set_config('version', $version); 86 98 -
bluetrait-event-viewer/trunk/readme.txt
r593591 r907578 3 3 Tags: admin, btev, events, event viewer, stats, statistics, security, monitor, plugin, audit, logging 4 4 Requires at least: 3.2 5 Tested up to: 3. 4.16 Stable tag: 2.0. 15 Tested up to: 3.9 6 Stable tag: 2.0.2 7 7 8 8 Bluetrait Event Viewer (BTEV) monitors events that occur in your WordPress install. … … 132 132 Note: Release Date is DD/MM/YYYY :) 133 133 134 = 2.0.2 (4/5/2014) = 135 136 + Tested with WordPress 3.9 137 - HTML improvements (updated some button styles to match WordPress 3.9) 138 134 139 = 2.0.1 (2/9/2012) = 135 140
Note: See TracChangeset
for help on using the changeset viewer.