Skip to content

Commit

Permalink
2.0.8
Browse files Browse the repository at this point in the history
[*] some fixes
  • Loading branch information
wombat committed Oct 2, 2019
1 parent b6be4f5 commit 4da9c19
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
kwsitemapgenerator (2.0.8) stable; urgency=medium

* notices fixes

-- Karel Wintersky <[email protected]> Tue, 01 Oct 2019 17:39:09 +0300

kwsitemapgenerator (2.0.7) stable; urgency=medium

* notices fixes
Expand Down
3 changes: 3 additions & 0 deletions sources/class.SitemapSystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ public function config_load($config_file, $subpath = '')
if (!file_exists($config_file))
throw new Exception("<strong>FATAL ERROR:</strong> Config file `{$config_file}` not found. ", 1 );

if (!is_readable($config_file))
throw new Exception("<strong>FATAL ERROR:</strong> Config file `{$config_file}` not readable. ", 2 );

$new_config = parse_ini_file($config_file, true, INI_SCANNER_TYPED);

if (empty(trim($subpath, $this::CONFIG_GLUE))) {
Expand Down
11 changes: 1 addition & 10 deletions sources/kw_sitemapgenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* User: Karel Wintersky
* Date: 18.09.2019
*/
const KW_SITEMAPGEN_VERSION = '2.0';
const KWSMG_VERSION = '2.0.8';

require_once 'class.SitemapSystem.php';
require_once 'class.SitemapFileSaver.php';
Expand Down Expand Up @@ -49,15 +49,6 @@

$stat_total_time = microtime(true);


/**
* @todo: ВНЕСТИ В ДОКУМЕНТАЦИЮ
* Если в глобальном конфиге встречается опция "include_root_page", она обрабатывается так:
* 1 : создается секция __root__, на основе которой создается файл root.xml.gz с единственной строчкой к корню сайта
* 'строка': поведение аналогично, но создается файл с соотв. именем
* 0/не существует : файл не создается. При этом к корню сайта не будет сайтмэпа, ЕСЛИ он не описан в секции, например "статических" страниц.
*/

if ( $global_include_root_page ) {
if (!is_string($global_include_root_page)) $global_include_root_page = 'root';

Expand Down

0 comments on commit 4da9c19

Please sign in to comment.