Bulk Page Creator - Version 1.0.1

Version Description

Fixed issue with extra spaces at end of page titles

=

Download this release

Release Info

Developer DaganLev
Plugin Icon wp plugin Bulk Page Creator
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0.0 to 1.0.1

Files changed (2) hide show
  1. bulk-page-creator.php +2 -2
  2. readme.txt +3 -0
bulk-page-creator.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Bulk Page Creator
4
  Plugin URI: http://solid-code.co.uk/2011/05/bulk-page-creator/
5
  Description: Allows you to create multiple pages in a batch/bulk manner saving time when initially setting up your WordPress site.
6
- Version: 1.0.0
7
  Author: Dagan Lev
8
  Author URI: http://solid-code.co.uk
9
 
@@ -74,7 +74,7 @@ if (!class_exists("sc_bulk_page_creator")) {
74
  'post_type' => 'page',
75
  'post_status' => 'publish',
76
  'post_parent' => $parent,
77
- 'post_title' => $rres[5],
78
  'post_content' => '<h1>' . htmlentities($rres[5]) . '</h1>');
79
 
80
  global $wpdb;
3
  Plugin Name: Bulk Page Creator
4
  Plugin URI: http://solid-code.co.uk/2011/05/bulk-page-creator/
5
  Description: Allows you to create multiple pages in a batch/bulk manner saving time when initially setting up your WordPress site.
6
+ Version: 1.0.1
7
  Author: Dagan Lev
8
  Author URI: http://solid-code.co.uk
9
 
74
  'post_type' => 'page',
75
  'post_status' => 'publish',
76
  'post_parent' => $parent,
77
+ 'post_title' => rtrim($rres[5]),
78
  'post_content' => '<h1>' . htmlentities($rres[5]) . '</h1>');
79
 
80
  global $wpdb;
readme.txt CHANGED
@@ -25,6 +25,9 @@ To install this plugin please use the "install" feature from the WordPress site.
25
  = 1.0.0 =
26
  * Initial setup
27
 
 
 
 
28
 
29
  == Screenshots ==
30
 
25
  = 1.0.0 =
26
  * Initial setup
27
 
28
+ = 1.0.1 =
29
+ Fixed issue with extra spaces at end of page titles
30
+
31
 
32
  == Screenshots ==
33