Skip to content

Commit 3231822

Browse files
committed
- Fixed E_NOTICE introduced in #285
Version 2.12.3-pl
1 parent 6101cab commit 3231822

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

_build/build.config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
define('PKG_NAME', 'pdoTools');
55
define('PKG_NAME_LOWER', strtolower(PKG_NAME));
66

7-
define('PKG_VERSION', '2.12.2');
7+
define('PKG_VERSION', '2.12.3');
88
define('PKG_RELEASE', 'pl');
99
define('PKG_AUTO_INSTALL', true);
1010

core/components/pdotools/docs/changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Changelog for pdoTools.
22

3+
2.12.3 pl
4+
==============
5+
- Fixed E_NOTICE introduced in #285.
6+
37
2.12.2 pl
48
==============
59
- Updated chunks for Bootstrap 4.

core/components/pdotools/model/pdotools/pdofetch.class.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ public function run()
146146
} else {
147147
$row['link'] = $this->makeUrl($row['id'], $row);
148148
}
149-
} else {
150-
$row['link'] = $row['link'] ?: '';
149+
} elseif (!isset($row['link'])) {
150+
$row['link'] = '';
151151
}
152152

153153
$tpl = $this->defineChunk($row);

0 commit comments

Comments
 (0)