Skip to content

Commit bab79ab

Browse files
committed
typo fixes
1 parent d76379d commit bab79ab

6 files changed

Lines changed: 8 additions & 6 deletions

File tree

debian/changelog

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
icinga-editor (0.200-30) UNRELEASED; urgency=medium
1+
icinga-editor (0.201-31) UNRELEASED; urgency=medium
22

33
[ dvorak ]
44
* Initial release. (Closes: #XXXXXX)
@@ -75,5 +75,6 @@ icinga-editor (0.200-30) UNRELEASED; urgency=medium
7575
or notification_interval value for services & other misc fixes
7676
* HotfFix Invalid max_check_attempts, check_interval, retry_interval,
7777
or notification_interval value for services & other misc fixes
78+
* Scripts file upload Many fixes and improvements
7879

79-
-- vitex <vitex@developer.kancl.brevnov.czf> Wed, 20 Jul 2016 18:31:43 +0200
80+
-- vitex <vitex@developer.kancl.brevnov.czf> Wed, 20 Jul 2016 18:58:43 +0200

debian/conf/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vitexsoftware/icinga-editor",
33
"description": "Editor of Icinga Configuration files (debian version)",
4-
"version": "0.200.30",
4+
"version": "0.201.31",
55
"authors": [
66
{
77
"name": "vitex",

debian/lastversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.200
1+
0.201

debian/revison

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30
1+
0

src/classes/UI/HostIcon.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class HostIcon extends \Ease\Html\ImgTag
2121
public function __construct($host)
2222
{
2323
$title = '';
24+
$image = null;
2425
if (is_array($host)) {
2526
if (isset($host['icon_image'])) {
2627
$image = $host['icon_image'];

src/classes/engine/Configurator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ public function takeData($data, $dataPrefix = null)
437437
unset($data['useFromTemplate']);
438438
}
439439
foreach ($data as $key => $value) {
440-
if (strtoupper($value) === 'NULL') {
440+
if (isset($value) && is_string($value) && (strtoupper($value) === 'NULL')) {
441441
$data[$key] = null;
442442
}
443443
if (strstr($key, '#')) {

0 commit comments

Comments
 (0)