Changeset 517097
- Timestamp:
- 03/10/2012 03:35:13 AM (14 years ago)
- Location:
- wp-html-sitemap/trunk
- Files:
-
- 11 edited
-
css/sitemap.css (modified) (1 diff)
-
css/style.css (modified) (1 diff)
-
inc/AdminPage.php (modified) (1 diff)
-
inc/Exception.php (modified) (1 diff)
-
inc/Map.php (modified) (1 diff)
-
inc/Options.php (modified) (3 diffs)
-
inc/SitemapShortcode.php (modified) (1 diff)
-
inc/Utilities.php (modified) (1 diff)
-
js/wp-html-sitemap.options.js (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-html-sitemap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-html-sitemap/trunk/css/sitemap.css
r514847 r517097 1 1 /* 2 WP HTML Sitemap v1.1.12 WP HTML Sitemap 3 3 Contact: Bill Edgar (bill.edgar@oaktondata.com) 4 4 http://www.oaktondata.com/wordpress-html-sitemap -
wp-html-sitemap/trunk/css/style.css
r514847 r517097 1 1 /* 2 WP HTML Sitemap v1.1.12 WP HTML Sitemap 3 3 Contact: Bill Edgar (bill.edgar@oaktondata.com) 4 4 http://www.oaktondata.com/wordpress-html-sitemap -
wp-html-sitemap/trunk/inc/AdminPage.php
r514847 r517097 2 2 3 3 /* 4 WP HTML Sitemap v1.1.14 WP HTML Sitemap 5 5 Contact: Bill Edgar (bill.edgar@oaktondata.com) 6 6 http://www.oaktondata.com/wordpress-html-sitemap -
wp-html-sitemap/trunk/inc/Exception.php
r514847 r517097 2 2 3 3 /* 4 WP HTML Sitemap v1.1.14 WP HTML Sitemap 5 5 Contact: Bill Edgar (bill.edgar@oaktondata.com) 6 6 http://www.oaktondata.com/wordpress-html-sitemap -
wp-html-sitemap/trunk/inc/Map.php
r514847 r517097 2 2 3 3 /* 4 WP HTML Sitemap v1.1.14 WP HTML Sitemap 5 5 Contact: Bill Edgar (bill.edgar@oaktondata.com) 6 6 http://www.oaktondata.com/wordpress-html-sitemap -
wp-html-sitemap/trunk/inc/Options.php
r514847 r517097 2 2 3 3 /* 4 WP HTML Sitemap v1.1.14 WP HTML Sitemap 5 5 Contact: Bill Edgar (bill.edgar@oaktondata.com) 6 6 http://www.oaktondata.com/wordpress-html-sitemap … … 366 366 function admin_menu() { 367 367 368 // add googlyzeroptions page link to settings menu368 // add WP HTML Sitemap options page link to settings menu 369 369 $page_hook = add_options_page( 370 370 $page_title = 'WP HTML Sitemap Options', … … 573 573 // check to make sure selections is an array 574 574 if ( is_array( $selections ) ) { 575 if ( ! googlyzer_Utilities::isAssociative( $selections ) ) {575 if ( !wp_html_sitemap_Utilities::isAssociative( $selections ) ) { 576 576 foreach ( $selections as $key => $item ) { 577 577 if ( $type === 'dropdown' ) { -
wp-html-sitemap/trunk/inc/SitemapShortcode.php
r514847 r517097 2 2 3 3 /* 4 WP HTML Sitemap v1.1.14 WP HTML Sitemap 5 5 Contact: Bill Edgar (bill.edgar@oaktondata.com) 6 6 http://www.oaktondata.com/wordpress-html-sitemap -
wp-html-sitemap/trunk/inc/Utilities.php
r514847 r517097 2 2 3 3 /* 4 WP HTML Sitemap v1.1.14 WP HTML Sitemap 5 5 Contact: Bill Edgar (bill.edgar@oaktondata.com) 6 6 http://www.oaktondata.com/wordpress-html-sitemap 7 7 8 Copyright (c) 201 1, Oakton Data LLC8 Copyright (c) 2012, Oakton Data LLC 9 9 All rights reserved. 10 10 -
wp-html-sitemap/trunk/js/wp-html-sitemap.options.js
r514847 r517097 1 1 /* 2 WP HTML Sitemap v1.1.12 WP HTML Sitemap 3 3 Contact: Bill Edgar (bill.edgar@oaktondata.com) 4 4 http://www.oaktondata.com/wordpress-html-sitemap -
wp-html-sitemap/trunk/readme.txt
r514847 r517097 5 5 Requires at least: 2.9 6 6 Tested up to: 3.3.1 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 9 9 Add a WordPress HTML sitemap that is fully customizable to improve your website SEO and enable easy navigation for your users. … … 72 72 == Changelog == 73 73 74 = 1.1.2 = 75 * Fixed bug preventing options screen from displaying resulting from incorrect internal function call. 76 74 77 = 1.1.1 = 75 78 * Removed dependency on updated strstr function in PHP v5.3 which caused the plugin to crash for anyone running an earlier version of PHP. … … 85 88 == Upgrade Notice == 86 89 90 = 1.1.2 = 91 * IMPORTANT: Fixed bug preventing options screen from displaying resulting from incorrect internal function call. 92 87 93 = 1.1.1 = 88 94 * 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 5 5 Plugin Name: WP HTML Sitemap 6 6 Plugin URI: http://oaktondata.com/wordpress-html-sitemap/ 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author: Bill Edgar 9 9 Author URI: http://oaktondata.com … … 44 44 45 45 // define constants 46 define( 'WP_HTML_SITEMAP_VERSION', '1.1 ' );46 define( 'WP_HTML_SITEMAP_VERSION', '1.1.2' ); 47 47 define( 'WP_HTML_SITEMAP_BASE_URL', network_site_url() ); 48 48
Note: See TracChangeset
for help on using the changeset viewer.