Simple Wp Sitemap - Version 1.1.4

Version Description

(May 16, 2016) = * Bugfix for old php versions

Download this release

Release Info

Developer Webbjocke
Plugin Icon 128x128 Simple Wp Sitemap
Version 1.1.4
Comparing to
See all releases

Code changes from version 1.1.3 to 1.1.4

readme.txt CHANGED
@@ -6,7 +6,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: sitemap, google sitemap, xml, simple sitemap, html, xml sitemap, html sitemap, seo, seo sitemap, sitemaps, site map, sitemap html, sitemap xml, sitemap plugin, wordpress sitemap
7
  Requires at least: 4.0
8
  Tested up to: 4.6
9
- Stable tag: 1.1.3
10
 
11
  An easy, fast and secure plugin that adds both an xml and an html sitemap to your site, which updates and maintains themselves so you dont have to!
12
 
@@ -82,6 +82,9 @@ When you deactivate the plugin they get removed automatically.
82
 
83
  == Changelog ==
84
 
 
 
 
85
  = 1.1.3 (May 15, 2016) =
86
  * Added option to change titles in html sitemap
87
  * Fixed bug when upgrading to premium
6
  Tags: sitemap, google sitemap, xml, simple sitemap, html, xml sitemap, html sitemap, seo, seo sitemap, sitemaps, site map, sitemap html, sitemap xml, sitemap plugin, wordpress sitemap
7
  Requires at least: 4.0
8
  Tested up to: 4.6
9
+ Stable tag: 1.1.4
10
 
11
  An easy, fast and secure plugin that adds both an xml and an html sitemap to your site, which updates and maintains themselves so you dont have to!
12
 
82
 
83
  == Changelog ==
84
 
85
+ = 1.1.4 (May 16, 2016) =
86
+ * Bugfix for old php versions
87
+
88
  = 1.1.3 (May 15, 2016) =
89
  * Added option to change titles in html sitemap
90
  * Fixed bug when upgrading to premium
simple-wp-sitemap.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Simple Wp Sitemap
5
  * Plugin URI: http://www.webbjocke.com/simple-wp-sitemap/
6
  * Description: An easy, fast and secure plugin that adds both an xml and an html sitemap to your site, which updates and maintains themselves so you dont have to!
7
- * Version: 1.1.3
8
  * Author: Webbjocke
9
  * Author URI: http://www.webbjocke.com/
10
  * License: GPLv3
4
  * Plugin Name: Simple Wp Sitemap
5
  * Plugin URI: http://www.webbjocke.com/simple-wp-sitemap/
6
  * Description: An easy, fast and secure plugin that adds both an xml and an html sitemap to your site, which updates and maintains themselves so you dont have to!
7
+ * Version: 1.1.4
8
  * Author: Webbjocke
9
  * Author URI: http://www.webbjocke.com/
10
  * License: GPLv3
simpleWpMapBuilder.php CHANGED
@@ -172,7 +172,7 @@ class SimpleWpMapBuilder {
172
  }
173
 
174
  // Gets titles xml or html
175
- public function getTitleStr ($title, &$arr) {
176
  if ($xml = $this->$title ? $this->$title : '') {
177
  if (in_array($title, array('categories', 'tags', 'authors'))) {
178
  $xml = $this->stringifyCatsTagsAuths($xml, $title);
172
  }
173
 
174
  // Gets titles xml or html
175
+ public function getTitleStr ($title, $arr) {
176
  if ($xml = $this->$title ? $this->$title : '') {
177
  if (in_array($title, array('categories', 'tags', 'authors'))) {
178
  $xml = $this->stringifyCatsTagsAuths($xml, $title);
simpleWpMapOptions.php CHANGED
@@ -33,7 +33,7 @@ class SimpleWpMapOptions {
33
 
34
  // Returns default order option
35
  public function getDefaultOrder () {
36
- return array('home' => ['title' => 'Home', 'i' => 1], 'posts' => ['title' => 'Posts', 'i' => 2], 'pages' => ['title' => 'Pages', 'i' => 3], 'other' => ['title' => 'Other', 'i' => 4], 'categories' => ['title' => 'Categories', 'i' => 5], 'tags' => ['title' => 'Tags', 'i' => 6], 'authors' => ['title' => 'Authors', 'i' => 7]);
37
  }
38
 
39
  // Updates the settings/options
33
 
34
  // Returns default order option
35
  public function getDefaultOrder () {
36
+ return array('home' => array('title' => 'Home', 'i' => 1), 'posts' => array('title' => 'Posts', 'i' => 2), 'pages' => array('title' => 'Pages', 'i' => 3), 'other' => array('title' => 'Other', 'i' => 4), 'categories' => array('title' => 'Categories', 'i' => 5), 'tags' => array('title' => 'Tags', 'i' => 6), 'authors' => array('title' => 'Authors', 'i' => 7));
37
  }
38
 
39
  // Updates the settings/options