Skip to content

Commit

Permalink
Merge branch 'release-1.0.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
archetyped committed Jan 8, 2016
2 parents 01c152a + 6554fe7 commit 8ad50a2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 32 deletions.
7 changes: 0 additions & 7 deletions includes/class.base.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,6 @@ class EOP_Base {
*/
var $debug;

/**
* Legacy constructor
*/
function EOP_Base() {
$this->__construct();
}

/**
* Constructor
*/
Expand Down
8 changes: 0 additions & 8 deletions includes/class.options.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@ class EOP_Options extends EOP_Base {

/*-** Init **-*/

/**
* Legacy constructor
* @param $config @see __construct
*/
function EOP_Options($config = null) {
$this->__construct($config);
}

/**
* Constructor
* @param array $config Default configuration options
Expand Down
10 changes: 1 addition & 9 deletions includes/class.utilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
*
*/
class EOP_Utilities {

function EOP_Utilities() {
$this->__construct();
}


function __construct() {

}
Expand Down Expand Up @@ -668,10 +664,6 @@ class EOP_Debug {

/* Constructor */

function EOP_Debug() {
$this->__construct();
}

function __construct() {

}
Expand Down
2 changes: 1 addition & 1 deletion main.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Eyes Only
Plugin URI: http://archetyped.com/tools/eyes-only/
Description: The ultimate tool for publishing your private thoughts in public
Version: 1.0.7
Version: 1.0.8
Author: Archetyped
Author URI: http://archetyped.com
*/
Expand Down
3 changes: 2 additions & 1 deletion mce/plugins/eyes-only/editor_plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@

// Register button
ed.addButton(props.id, {
title : props.id + '.desc',
//title : props.id + '.desc',
title: ed.getLang(props.id + '.desc'),
cmd : props.id,
image : url + props.iconPath
});
Expand Down
4 changes: 0 additions & 4 deletions model.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ class EyesOnly extends EOP_Base {

/*-** Initialization **-*/

function EyesOnly() {
$this->__construct();
}

function __construct() {
parent::__construct();
$this->admin_settings = $this->add_prefix($this->admin_settings);
Expand Down
10 changes: 8 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: Archetyped
Donate link: https://gum.co/eop-donation
Tags: privacy, private, security, redact, redaction, hide, hidden, anonymous
Plugin Link: http://archetyped.com/tools/eyes-only/
Requires at least: 3.9
Tested up to: 3.9
Requires at least: 4.4
Tested up to: 4.4
Stable tag: trunk

The ultimate tool for publishing your private thoughts in public
Expand Down Expand Up @@ -46,6 +46,12 @@ Post your questions/comments on the [plugin's home page](http://archetyped.com/t

== Changelog ==

= 1.0.8 =

* Update: WordPress compatibility (4.4)
* Fix: Editor Redact button tooltip
* Optimize: Remove PHP legacy constructors

= 1.0.7 =

* Update: WordPress 3.9 compatibility
Expand Down

0 comments on commit 8ad50a2

Please sign in to comment.