Plugin Directory

Changeset 1076367


Ignore:
Timestamp:
01/27/2015 01:17:34 AM (11 years ago)
Author:
dtelepathy
Message:

Adding https fix

Location:
author-recommended-posts/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • author-recommended-posts/trunk/index.php

    r694841 r1076367  
    44Plugin URI: http://
    55Description: A simple WordPress plugin that allows the author to pick recommended reading of posts, on a per post basis
    6 Version: 1.0.2
     6Version: 1.0.3
    77Author: digital-telepathy
    88Author URI: http://www.dtelepathy.com
     
    3131    static $html_newline = "\n";
    3232    var $namespace = "author_recommended_posts";
    33     var $version = "1.0.2";
     33    var $version = "1.0.3";
    3434   
    3535    // Default plugin options
  • author-recommended-posts/trunk/lib/constants.php

    r694841 r1076367  
    66 *
    77 * @author digital-telepathy
    8  * @version 1.0.0
    9  * @since 1.0.0
    108 */
    119
    1210// The current version of this plugin
    13 if( !defined( 'AUTHOR_RECOMMENDED_POSTS_VERSION' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_VERSION', '1.0.2' );
     11if( !defined( 'AUTHOR_RECOMMENDED_POSTS_VERSION' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_VERSION', '1.0.3' );
    1412
    1513// The directory the plugin resides in
     
    1715
    1816// The URL path of this plugin
    19 if( !defined( 'AUTHOR_RECOMMENDED_POSTS_URLPATH' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_URLPATH', WP_PLUGIN_URL . "/" . plugin_basename( AUTHOR_RECOMMENDED_POSTS_DIRNAME ) );
     17if ( function_exists('plugins_url') ) {
     18  $wp_plugins_url = plugins_url();
     19} else {
     20  $wp_plugins_url = WP_PLUGIN_URL;
     21}
     22if( !defined( 'AUTHOR_RECOMMENDED_POSTS_URLPATH' ) ) define( 'AUTHOR_RECOMMENDED_POSTS_URLPATH', $wp_plugins_url . "/" . plugin_basename( AUTHOR_RECOMMENDED_POSTS_DIRNAME ) );
    2023
    2124if( !defined( 'IS_AJAX_REQUEST' ) ) define( 'IS_AJAX_REQUEST', ( !empty( $_SERVER['HTTP_X_REQUESTED_WITH'] ) && strtolower( $_SERVER['HTTP_X_REQUESTED_WITH'] ) == 'xmlhttprequest' ) );
  • author-recommended-posts/trunk/readme.txt

    r694841 r1076367  
    44Tags: related posts, author posts, recommended, reading, author recommended posts, recommended author posts, recommended posts, reading, specific posts, plugin, list of posts, recommended articles
    55Requires at least: 3.3
    6 Tested up to: 3.5
     6Tested up to: 4.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    5757
    5858== Changelog ==
     59= 1.0.3 =
     60* Changed plugin URL constant to properly respect https scheme
     61
    5962= 1.0.2 =
    6063* Added 2 new actions author_recommended_posts_before_related and author_recommended_posts_after_related that can be hooked into for outputting custom content before or after each related entry
     
    6871
    6972== Upgrade Notice ==
     73= 1.0.3 =
     74Added https fix
     75
    7076= 1.0.2 =
    7177Minor additions
Note: See TracChangeset for help on using the changeset viewer.