Plugin Directory

Changeset 517097


Ignore:
Timestamp:
03/10/2012 03:35:13 AM (14 years ago)
Author:
wmsedgar
Message:

Committing version 1.1.2

Location:
wp-html-sitemap/trunk
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • wp-html-sitemap/trunk/css/sitemap.css

    r514847 r517097  
    11/*
    2     WP HTML Sitemap v1.1.1
     2    WP HTML Sitemap
    33    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    44    http://www.oaktondata.com/wordpress-html-sitemap
  • wp-html-sitemap/trunk/css/style.css

    r514847 r517097  
    11/*
    2     WP HTML Sitemap v1.1.1
     2    WP HTML Sitemap
    33    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    44    http://www.oaktondata.com/wordpress-html-sitemap
  • wp-html-sitemap/trunk/inc/AdminPage.php

    r514847 r517097  
    22
    33/*
    4     WP HTML Sitemap v1.1.1
     4    WP HTML Sitemap
    55    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    66    http://www.oaktondata.com/wordpress-html-sitemap
  • wp-html-sitemap/trunk/inc/Exception.php

    r514847 r517097  
    22
    33/*
    4     WP HTML Sitemap v1.1.1
     4    WP HTML Sitemap
    55    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    66    http://www.oaktondata.com/wordpress-html-sitemap
  • wp-html-sitemap/trunk/inc/Map.php

    r514847 r517097  
    22
    33/*
    4     WP HTML Sitemap v1.1.1
     4    WP HTML Sitemap
    55    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    66    http://www.oaktondata.com/wordpress-html-sitemap
  • wp-html-sitemap/trunk/inc/Options.php

    r514847 r517097  
    22
    33/*
    4     WP HTML Sitemap v1.1.1
     4    WP HTML Sitemap
    55    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    66    http://www.oaktondata.com/wordpress-html-sitemap
     
    366366        function admin_menu() {
    367367           
    368             // add googlyzer options page link to settings menu
     368            // add WP HTML Sitemap options page link to settings menu
    369369            $page_hook = add_options_page(
    370370                $page_title = 'WP HTML Sitemap Options',
     
    573573                // check to make sure selections is an array
    574574                if ( is_array( $selections ) ) {
    575                     if ( !googlyzer_Utilities::isAssociative( $selections ) ) {
     575                    if ( !wp_html_sitemap_Utilities::isAssociative( $selections ) ) {
    576576                        foreach ( $selections as $key => $item ) {
    577577                            if ( $type === 'dropdown' ) {
  • wp-html-sitemap/trunk/inc/SitemapShortcode.php

    r514847 r517097  
    22
    33/*
    4     WP HTML Sitemap v1.1.1
     4    WP HTML Sitemap
    55    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    66    http://www.oaktondata.com/wordpress-html-sitemap
  • wp-html-sitemap/trunk/inc/Utilities.php

    r514847 r517097  
    22
    33/*
    4     WP HTML Sitemap v1.1.1
     4    WP HTML Sitemap
    55    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    66    http://www.oaktondata.com/wordpress-html-sitemap
    77   
    8     Copyright (c) 2011, Oakton Data LLC
     8    Copyright (c) 2012, Oakton Data LLC
    99    All rights reserved.
    1010
  • wp-html-sitemap/trunk/js/wp-html-sitemap.options.js

    r514847 r517097  
    11/*
    2     WP HTML Sitemap v1.1.1
     2    WP HTML Sitemap
    33    Contact: Bill Edgar (bill.edgar@oaktondata.com)
    44    http://www.oaktondata.com/wordpress-html-sitemap
  • wp-html-sitemap/trunk/readme.txt

    r514847 r517097  
    55Requires at least: 2.9
    66Tested up to: 3.3.1
    7 Stable tag: 1.1.1
     7Stable tag: 1.1.2
    88
    99Add a WordPress HTML sitemap that is fully customizable to improve your website SEO and enable easy navigation for your users.
     
    7272== Changelog ==
    7373
     74= 1.1.2 =
     75* Fixed bug preventing options screen from displaying resulting from incorrect internal function call.
     76
    7477= 1.1.1 =
    7578* Removed dependency on updated strstr function in PHP v5.3 which caused the plugin to crash for anyone running an earlier version of PHP.
     
    8588== Upgrade Notice ==
    8689
     90= 1.1.2 =
     91* IMPORTANT: Fixed bug preventing options screen from displaying resulting from incorrect internal function call.
     92
    8793= 1.1.1 =
    8894* Bug fix for anyone running PHP v5.2 or earlier, the plugin should now function properly (rather than crash).
  • wp-html-sitemap/trunk/wp-html-sitemap.php

    r514847 r517097  
    55    Plugin Name: WP HTML Sitemap
    66    Plugin URI: http://oaktondata.com/wordpress-html-sitemap/
    7     Version: 1.1.1
     7    Version: 1.1.2
    88    Author: Bill Edgar
    99    Author URI: http://oaktondata.com
     
    4444
    4545// define constants
    46 define( 'WP_HTML_SITEMAP_VERSION', '1.1' );
     46define( 'WP_HTML_SITEMAP_VERSION', '1.1.2' );
    4747define( 'WP_HTML_SITEMAP_BASE_URL', network_site_url() );
    4848
Note: See TracChangeset for help on using the changeset viewer.