Simple History - Version 0.7.2

Version Description

  • Default settings should be to show on page, missed that one. Sorry!
Download this release

Release Info

Developer eskapism
Plugin Icon 128x128 Simple History
Version 0.7.2
Comparing to
See all releases

Code changes from version 0.7.1 to 0.7.2

Files changed (2) hide show
  1. index.php +3 -3
  2. readme.txt +4 -1
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Simple History
4
  Plugin URI: http://eskapism.se/code-playground/simple-history/
5
  Description: Get a log/history/audit log/version history of the changes made by users in WordPress.
6
- Version: 0.7.1
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
@@ -27,7 +27,7 @@ License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
- define( "SIMPLE_HISTORY_VERSION", "0.7.1");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
  define( "SIMPLE_HISTORY_URL", WP_PLUGIN_URL . '/simple-history/');
33
 
@@ -326,7 +326,7 @@ function simple_history_setting_show_on_dashboard() {
326
  return (bool) $show_on_dashboard;
327
  }
328
  function simple_history_setting_show_as_page() {
329
- $setting = get_option("simple_history_show_as_page", 0);
330
  $setting = apply_filters("simple_history_show_as_page", $setting);
331
  return (bool) $setting;
332
 
3
  Plugin Name: Simple History
4
  Plugin URI: http://eskapism.se/code-playground/simple-history/
5
  Description: Get a log/history/audit log/version history of the changes made by users in WordPress.
6
+ Version: 0.7.2
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
+ define( "SIMPLE_HISTORY_VERSION", "0.7.2");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
  define( "SIMPLE_HISTORY_URL", WP_PLUGIN_URL . '/simple-history/');
33
 
326
  return (bool) $show_on_dashboard;
327
  }
328
  function simple_history_setting_show_as_page() {
329
+ $setting = get_option("simple_history_show_as_page", 1);
330
  $setting = apply_filters("simple_history_show_as_page", $setting);
331
  return (bool) $setting;
332
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
4
  Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin
5
  Requires at least: 3.0
6
  Tested up to: 3.4.2
7
- Stable tag: 0.7.1
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
@@ -85,6 +85,9 @@ to only use the secret RSS feed to keep track of the changes on you web site/Wor
85
 
86
  == Changelog ==
87
 
 
 
 
88
  = 0.7.1 =
89
  - Fixed a PHP shorttag
90
 
4
  Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin
5
  Requires at least: 3.0
6
  Tested up to: 3.4.2
7
+ Stable tag: 0.7.2
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
85
 
86
  == Changelog ==
87
 
88
+ = 0.7.2 =
89
+ - Default settings should be to show on page, missed that one. Sorry!
90
+
91
  = 0.7.1 =
92
  - Fixed a PHP shorttag
93