Plugin Directory

Changeset 724147


Ignore:
Timestamp:
06/07/2013 07:16:46 PM (13 years ago)
Author:
DaganLev
Message:

version 1.0.6 - javascript fix for Safari

Location:
bulk-page-creator
Files:
1 added
3 edited

Legend:

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

    r499348 r724147  
    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.5
     6Version: 1.0.6
    77Author: Dagan Lev
    88Author URI: http://solid-code.co.uk
     
    9898        ?>
    9999        <div class="wrap" id="sc-bpc-div">
    100             <?php if($_GET['saved']=='1'){ ?>
     100            <?php if(isset($_GET['saved']) && $_GET['saved']=='1'){ ?>
    101101                <div id="setting-error-settings_updated" class="updated settings-error"><p><strong>Settings saved.</strong></p></div>
    102102            <?php } ?>
  • bulk-page-creator/trunk/my-script.js

    r499348 r724147  
    2424    //get the draft pages
    2525    var valDrafts = jQuery('#pagesDraft').val();
    26     if(valDrafts!=''){
     26    if(valDrafts && valDrafts!=''){
    2727        if(valDrafts.match(',')){
    2828            //its an array
  • bulk-page-creator/trunk/readme.txt

    r499348 r724147  
    3838Added a multiple page addition with comma seperation
    3939
     40= 1.0.6 =
     41Amended potential issue with safari and draft pages in JavaScript
     42
    4043== Screenshots ==
    4144
Note: See TracChangeset for help on using the changeset viewer.