Skip to content

Commit

Permalink
Final PR
Browse files Browse the repository at this point in the history
  • Loading branch information
justingreerbbi committed Feb 22, 2016
1 parent 1c0d8f7 commit 29c10ba
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 63 deletions.
8 changes: 0 additions & 8 deletions README.md

This file was deleted.

6 changes: 1 addition & 5 deletions library/class-wo-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
* For now, you can read here to understand how this plugin works.
* @link(Github, http://bshaffer.github.io/oauth2-server-php-docs/)
*/
if (! function_exists( 'add_filter' ) ) {
header('Status: 403 Forbidden');
header('HTTP/1.1 403 Forbidden');
exit();
}
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );

do_action( 'wo_before_api', array( $_REQUEST ) );
require_once dirname( __FILE__ ) . '/OAuth2/Autoloader.php';
Expand Down
7 changes: 2 additions & 5 deletions library/class-wo-table.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
<?php
if (!function_exists('add_filter')) {
header('Status: 403 Forbidden');
header('HTTP/1.1 403 Forbidden');
exit();
}

defined( 'ABSPATH' ) or die( 'No script kiddies please!' );

class WO_Table extends WP_List_Table {

Expand Down
27 changes: 0 additions & 27 deletions library/keys/private_key.pem

This file was deleted.

9 changes: 0 additions & 9 deletions library/keys/public_key.pem

This file was deleted.

4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Contributors: justingreerbbi
Donate link: http://justin-greer.com/
Tags: OAuth2 Service, oauth2, OAuth provider, Provider, OAuth, OAuth client, Single Sign On, SSO, OpenID Connect, OIDC, OpenID, Connect
Requires at least: 4.3
Tested up to: 4.4.1
Stable tag: 3.1.95
Tested up to: 4.4.2
Stable tag: 3.1.96
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
9 changes: 3 additions & 6 deletions wp-oauth-main.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@
* @author Justin Greer <[email protected]>
* @package WordPress OAuth Server
*/
if (!function_exists('add_filter')) {
header('Status: 403 Forbidden');
header('HTTP/1.1 403 Forbidden');
exit();
}

defined( 'ABSPATH' ) or die( 'No script kiddies please!' );

class WO_Server {

/** Plugin Version */
public $version = "3.1.95";
public $version = "3.1.96";

/** Server Instance */
public static $_instance = null;
Expand Down
2 changes: 1 addition & 1 deletion wp-oauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: WP OAuth Server
* Plugin URI: http://wp-oauth.com
* Version: 3.1.95
* Version: 3.1.96
* Description: Use WordPress to power your OAuth Server. Provide Single Sign On and other OAuth functionality.
* Author: Justin Greer
* Author URI: http://wp-oauth.com
Expand Down

0 comments on commit 29c10ba

Please sign in to comment.