Skip to content
This repository was archived by the owner on Mar 8, 2021. It is now read-only.

Commit 7a382fc

Browse files
committed
1.3.5
1 parent be94d6d commit 7a382fc

File tree

5 files changed

+54
-8
lines changed

5 files changed

+54
-8
lines changed

assets/docs/changelog.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
11
This file shows the changes in recent releases of Evolution CMS. The most current release is usually the
22
development release, and is only shown to give an idea of what's currently in the pipeline.
33

4+
Evolution CMS 1.3.5 (Sep 01, 2017)
5+
* [GitHub:#be94d6de] - fix php notice in Ditto (dmi3yy)
6+
* [GitHub:#16fe3481] - ElementsInTree clean up (Piotr Matysiak)
7+
* [GitHub:#f171c523] - ElementsInTree restyled for new theme (Piotr Matysiak)
8+
* [GitHub:#6726580c] - ElementsInTree 1.5.8 (Piotr Matysiak)
9+
* [GitHub:#4b6c3946] - Fix - <@IF><@ELSEIF><@ELSE><@ENDIF> (yamamoto)
10+
* [GitHub:#43fc85b3] - Code cleanup (yamamoto)
11+
* [GitHub:#3a941181] - #188 Ditto in dashboard widget permission issue (yamamoto)
12+
* [GitHub:#a7c1eb8e] - Fix - $ditto_base directory separator char (yamamoto)
13+
* [GitHub:#bd785cf9] - Fix - $modx->parseDocumentSource() (yamamoto)
14+
* [GitHub:#623be60e] - Code cleanup (yamamoto)
15+
* [GitHub:#2c0ad143] - fix Ditto TV output (dmi3yy)
16+
* [GitHub:#003c0be9] - Update document.parser.class.inc.php (Dreamer0x01)
17+
* [GitHub:#6cc75b5e] - Fix Ditto when dateSource emply use createdon #190 (dmi3yy)
18+
* [GitHub:#cd35be24] - fix tinymce params underfined bug on frontend (dmi3yy)
19+
* [GitHub:#c0702676] - fix 65 Plugin parameters are lost after update to the new version (dmi3yy)
20+
* [GitHub:#12c5c36f] - delete deprecated code (dmi3yy)
21+
* [GitHub:#ac4c1d37] - Refactor (yamamoto)
22+
* [GitHub:#82c8a6d8] - Remove - $ditto->renderQELinks() (yamamoto)
23+
* [GitHub:#19cfd326] - #188 Ditto in dashboard widget permission issue (yamamoto)
24+
* [GitHub:#1bac7219] - #190 Ditto does not recognize &dateSource parameter any more (yamamoto)
25+
* [GitHub:#d3760b2f] - no need update.php in extras module (dmi3yy)
26+
* [GitHub:#b8b75b24] - fix #192 (64j)
27+
* [GitHub:#83535377] - fix variable documentDirty (64j)
28+
* [GitHub:#3b70064c] - Update to Make sortable list more condensed (Piotr Matysiak)
29+
* [GitHub:#ffe64306] - Make sortable list more condensed (Piotr Matysiak)
30+
* [GitHub:#2c2fe39b] - #187 Ditto is missing placeholders when built-in filters are enabled (yamamoto)
31+
* [GitHub:#7374ccf6] - fix eng translate (dmi3yy)
32+
* [GitHub:#4903a8bd] - fix saved roles users #130 (Serg)
33+
34+
435
Evolution CMS 1.3.4 (Aug 24, 2017)
536
* [GitHub:#30e0efc9] - fix version (dmi3yy)
637
* [GitHub:#d03412a7] - Updater one more check for use from manager only (dmi3yy)

assets/snippets/DocLister/core/controller/site_content.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ public function _render($tpl = '')
9696
$tpl = $this->getCFGDef('tpl', '@CODE:<a href="[+url+]">[+pagetitle+]</a><br />');
9797
}
9898
if ($tpl != '') {
99-
$date = $this->getCFGDef('dateSource', 'pub_date');
100-
10199
$this->toPlaceholders(count($this->_docs), 1, "display"); // [+display+] - сколько показано на странице.
102100

103101
$i = 1;
@@ -143,7 +141,7 @@ public function _render($tpl = '')
143141
$item['url'] = $this->modx->makeUrl($item['id'], '', '', $this->getCFGDef('urlScheme', ''));
144142
}
145143
}
146-
144+
$date = $this->getCFGDef('dateSource', 'pub_date');
147145
if (isset($item[$date])) {
148146
if (!$item[$date] && $date == 'pub_date' && isset($item['createdon'])) {
149147
$date = 'createdon';
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//<?php
22
/**
3-
* DLcrumbs
3+
* DLCrumbs
44
*
5-
* DLcrumbs
5+
* DLCrumbs
66
*
77
* @category snippet
88
* @version 1.2
@@ -12,4 +12,4 @@
1212
* @internal @installset base, sample
1313
*/
1414

15-
return require MODX_BASE_PATH.'assets/snippets/DocLister/snippet.DLcrumbs.php';
15+
return require MODX_BASE_PATH.'assets/snippets/DocLister/snippet.DLCrumbs.php';
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
if(IN_MANAGER_MODE!="true") die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the MODX Content Manager instead of accessing this file directly.");
3+
?>
4+
<p></p>
5+
<ul>
6+
<li>ElementsInTree restyled for new theme, version 1.5.8 (Piotr Matysiak)</li>
7+
<li>Fix - <@IF><@ELSEIF><@ELSE><@ENDIF> (yamamoto)</li>
8+
<li>Fix Bugs in Ditto with date and placeholders from version 1.3.4 (yamamoto, Dmi3yy)</li>
9+
<li>Fix tinymce params underfined bug on frontend (dmi3yy)</li>
10+
<li>Fix 65 Plugin parameters are lost after update to the new version (dmi3yy)</li>
11+
<li>no need update.php in extras module (dmi3yy)</li>
12+
<li>Fix variable documentDirty (64j)</li>
13+
<li>Make sortable list more condensed (Piotr Matysiak)</li>
14+
<li>#187 Ditto is missing placeholders when built-in filters are enabled (yamamoto)</li>
15+
<li>Fix saved roles users #130 (64j)</li>
16+
<li>Fix #192 evo.checkConnectionToServer function (64j)</li>
17+
</ul>

manager/includes/version.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
$modx_version = '1.3.4'; // Current version number
3-
$modx_release_date = 'Aug 24, 2017'; // Date of release
2+
$modx_version = '1.3.5'; // Current version number
3+
$modx_release_date = 'Sep 01, 2017'; // Date of release
44
$modx_branch = 'Evolution'; // Codebase name
55
$modx_full_appname = "{$modx_branch} {$modx_version} ({$modx_release_date})";

0 commit comments

Comments
 (0)