Plugin Directory

Changeset 1846544


Ignore:
Timestamp:
03/25/2018 03:29:41 PM (8 years ago)
Author:
n7studios
Message:

Adding version 1.4.5

Location:
page-generator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • page-generator/trunk/includes/admin/generate.php

    r1840658 r1846544  
    303303            $this->searches = array(
    304304                '{' . $keyword . '}',                                   // Keyword Term
    305                 '{' . $keyword . ':uppercase_all}',                     // Keyword Term, uppercase
    306                 '{' . $keyword . ':lowercase_all}',                     // Keyword Term, lowercase
    307                 '{' . $keyword . ':uppercase_first_character}',         // Keyword Term, first char uppercase
    308                 '{' . $keyword . ':uppercase_first_character_words}',   // Keyword Term, first char of each word uppercase
    309                 '{' . $keyword . ':url}',                               // Keyword Term, as a URL / permalink friendly string
    310305            );
    311306            $this->replacements = array(
    312307                $term,
    313                 strtoupper( $term ),
    314                 strtolower( $term ),
    315                 ucfirst( $term ),
    316                 ucwords( $term ),
    317                 sanitize_title( $term ),
    318308            );
    319309               
     
    713703        }
    714704
    715         // If $item is a string, spintax it
    716         if ( is_string( $item ) ) {
    717             $item = Page_Generator_Pro_Spintax::get_instance()->process( $item );
    718         }
    719 
    720705    }
    721706
  • page-generator/trunk/page-generator.php

    r1840658 r1846544  
    33* Plugin Name: Page Generator
    44* Plugin URI: http://www.wpzinc.com/plugins/page-generator-pro
    5 * Version: 1.4.4
     5* Version: 1.4.5
    66* Author: WP Zinc
    77* Author URI: http://www.wpzinc.com
     
    5757        $this->plugin->name         = 'page-generator';
    5858        $this->plugin->displayName  = 'Page Generator';
    59         $this->plugin->version      = '1.4.4';
    60         $this->plugin->buildDate    = '2018-03-15 18:00:00';
     59        $this->plugin->version      = '1.4.5';
     60        $this->plugin->buildDate    = '2018-03-25 18:00:00';
    6161        $this->plugin->requires     = 3.6;
    6262        $this->plugin->tested       = '4.9.4';
  • page-generator/trunk/readme.txt

    r1840667 r1846544  
    8181== Changelog ==
    8282
     83= 1.4.5 =
     84* Fix: Generate: Fatal error when using certain Themes
     85
    8386= 1.4.4 =
    8487* Added: Post Type Template Support (WordPress 4.7+)
Note: See TracChangeset for help on using the changeset viewer.