💦 FULL SET: Changeset/ - Full Archive

Changeset 1287294


Ignore:
Timestamp:
11/16/2015 08:08:55 PM (10 years ago)
Author:
DaganLev
Message:

Added support for HTTPS logins

Location:
bulk-page-creator
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • bulk-page-creator/trunk/bulk-page-creator.php

    r1050490 r1287294  
    44Plugin URI: http://solid-code.co.uk/2011/05/bulk-page-creator/
    55Description: Allows you to create multiple pages in a batch/bulk manner saving time when initially setting up your WordPress site.
    6 Version: 1.0.8
     6Version: 1.0.9
    77Author: Dagan Lev
    88Author URI: http://solid-code.co.uk
     
    2323Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    2424*/
     25if ( ! defined( 'ABSPATH' ) ) {
     26    exit('no access'); // disable direct access
     27}
     28
    2529if (!class_exists("sc_bulk_page_creator")) {
    2630    class sc_bulk_page_creator{
     
    4953   
    5054    function sc_bpc_scripts(){
    51         wp_register_script('sc-bpc-js', WP_PLUGIN_URL.'/bulk-page-creator/my-script.js', array('jquery'));
     55        wp_register_script('sc-bpc-js', plugins_url() .'/bulk-page-creator/my-script.js', array('jquery'));
    5256        wp_enqueue_script('sc-bpc-js');
    5357    }
    5458   
    5559    function sc_bpc_styles(){
    56         wp_register_style('sc-bpc-css',WP_PLUGIN_URL.'/bulk-page-creator/my-style.css');
     60        wp_register_style('sc-bpc-css',plugins_url().'/bulk-page-creator/my-style.css');
    5761        wp_enqueue_style('sc-bpc-css');
    5862    }
  • bulk-page-creator/trunk/readme.txt

    r1050490 r1287294  
    4747Added template support - if templates exist in the theme will create a template dropdown to choose from when adding pages
    4848
     49= 1.0.9 =
     50Added support for HTTPS logins
     51
    4952== Screenshots ==
    5053
     
    5356== Upgrade Notice ==
    5457
    55 Added template support - if templates exist in the theme will create a template dropdown to choose from when adding pages
     58Added support for HTTPS logins
Note: See TracChangeset for help on using the changeset viewer.