Skip to content

Commit

Permalink
Correct method visibility error
Browse files Browse the repository at this point in the history
  • Loading branch information
jarednova committed Jan 26, 2016
1 parent 55fa665 commit 9ac9cff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jigsaw.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin Name: Jigsaw
Description: Simple ways to make admin customizations for WordPress
Author: Jared Novack + Upstatement
Version: 0.6.1
Version: 0.6.2
Author URI: http://jigsaw.upstatement.com/
*/

Expand Down Expand Up @@ -163,7 +163,7 @@ public static function add_user_column( $label, $callback, $priority = 10 ) {
}, 10, 3);
}

protected static function column_title_filter( $columns, $label, $priority ) {
static function column_title_filter( $columns, $label, $priority ) {
$key = sanitize_title( $label );
$col = array( $key => $label );
if ( $priority < 0 ) {
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: jarednova
Tags: admin, configuration
Requires at least: 3.7
Stable tag: 0.6.1
Stable tag: 0.6.2
Tested up to: 4.0
PHP version: 5.3.0 or greater
License: GPLv2 or later
Expand All @@ -26,6 +26,9 @@ Please use the [GitHub repo](https://github.com/upstatement/jigsaw/issues?state=

== Changelog ==

= 0.6.2 =
* Fixed method visibility error

= 0.6.1 =
* Fixed error in PHP 5.3

Expand Down

0 comments on commit 9ac9cff

Please sign in to comment.