BackUpWordPress - Version 2.0.4

Version Description

Download this release

Release Info

Developer willmot
Plugin Icon 128x128 BackUpWordPress
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

Files changed (2) hide show
  1. plugin.php +3 -3
  2. readme.txt +5 -1
plugin.php CHANGED
@@ -5,7 +5,7 @@ Plugin Name: BackUpWordPress
5
  Plugin URI: http://hmn.md/backupwordpress/
6
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>.
7
  Author: Human Made Limited
8
- Version: 2.0.3
9
  Author URI: http://hmn.md/
10
  */
11
 
@@ -30,10 +30,10 @@ if ( ! defined( 'HMBKP_PLUGIN_SLUG' ) )
30
  define( 'HMBKP_PLUGIN_SLUG', 'backupwordpress' );
31
 
32
  if ( ! defined( 'HMBKP_PLUGIN_PATH' ) )
33
- define( 'HMBKP_PLUGIN_PATH', dirname( __FILE__ ) );
34
 
35
  if ( ! defined( 'HMBKP_PLUGIN_URL' ) )
36
- define( 'HMBKP_PLUGIN_URL', str_replace( WP_CONTENT_DIR, WP_CONTENT_URL, HMBKP_PLUGIN_PATH ) );
37
 
38
  if ( ! defined( 'HMBKP_ADMIN_URL' ) )
39
  define( 'HMBKP_ADMIN_URL', add_query_arg( 'page', HMBKP_PLUGIN_SLUG, admin_url( 'tools.php' ) ) );
5
  Plugin URI: http://hmn.md/backupwordpress/
6
  Description: Simple automated backups of your WordPress powered website. Once activated you'll find me under <strong>Tools &rarr; Backups</strong>.
7
  Author: Human Made Limited
8
+ Version: 2.0.4
9
  Author URI: http://hmn.md/
10
  */
11
 
30
  define( 'HMBKP_PLUGIN_SLUG', 'backupwordpress' );
31
 
32
  if ( ! defined( 'HMBKP_PLUGIN_PATH' ) )
33
+ define( 'HMBKP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
34
 
35
  if ( ! defined( 'HMBKP_PLUGIN_URL' ) )
36
+ define( 'HMBKP_PLUGIN_URL', plugins_url( HMBKP_PLUGIN_SLUG ) );
37
 
38
  if ( ! defined( 'HMBKP_ADMIN_URL' ) )
39
  define( 'HMBKP_ADMIN_URL', add_query_arg( 'page', HMBKP_PLUGIN_SLUG, admin_url( 'tools.php' ) ) );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: humanmade, joehoyle, mattheu, tcrsavage, willmot, cuvelier
3
  Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
4
  Requires at least: 3.3.3
5
  Tested up to: 3.5
6
- Stable tag: 2.0.3
7
 
8
  Simple automated back ups of your WordPress powered website.
9
 
@@ -103,6 +103,10 @@ You can also tweet <a href="http://twitter.com/humanmadeltd">@humanmadeltd</a> o
103
 
104
  == Changelog ==
105
 
 
 
 
 
106
  #### 2.0.3
107
 
108
  * Fix issues with scheduled backups not firing in some cases.
3
  Tags: back up, backup, backups, database, zip, db, files, archive, wp-cli, humanmade
4
  Requires at least: 3.3.3
5
  Tested up to: 3.5
6
+ Stable tag: 2.0.4
7
 
8
  Simple automated back ups of your WordPress powered website.
9
 
103
 
104
  == Changelog ==
105
 
106
+ #### 2.0.4
107
+
108
+ * Revert the change to the way the plugin url and path were calculated as it caused regressions on some systems.
109
+
110
  #### 2.0.3
111
 
112
  * Fix issues with scheduled backups not firing in some cases.