[pkg-nagios-changes] [Git][nagios-team/nagvis][upstream] New upstream version 1.10.4
Bas Couwenberg (@sebastic)
gitlab at salsa.debian.org
Tue May 26 14:11:16 BST 2026
Bas Couwenberg pushed to branch upstream at Debian Nagios Maintainer Group / nagvis
Commits:
b99c7e8d by Bas Couwenberg at 2026-05-26T15:07:48+02:00
New upstream version 1.10.4
- - - - -
3 changed files:
- ChangeLog
- share/frontend/nagvis-js/js/ajaxActions.js
- share/server/core/defines/global.php
Changes:
=====================================
ChangeLog
=====================================
@@ -1,3 +1,6 @@
+1.10.4
+ * FIX: Moving lines snaps back to original position because comma-separated coordinates are incorrectly filtered out before saving
+
1.10.3
* FIX: Saving map elements incorrectly applied all attributes after the unchecked-checkbox submission fix
=====================================
share/frontend/nagvis-js/js/ajaxActions.js
=====================================
@@ -6,8 +6,14 @@ function saveObjectAttr(objId, attr) {
let urlPart = "";
for (const key in attr)
// parseInt() returned NaN, because value was set to "auto";
- // but also allow relative coordinate strings (contain '%')
- if (!isNaN(attr[key]) || isRelativeCoord(attr[key])) urlPart += "&" + key + "=" + escapeUrlValues(attr[key]);
+ // but also allow relative coordinate strings (contain '%') and
+ // comma-separated line endpoint coordinates (e.g. "100,500")
+ if (
+ !isNaN(attr[key]) ||
+ isRelativeCoord(attr[key]) ||
+ (typeof attr[key] === "string" && attr[key].includes(","))
+ )
+ urlPart += "&" + key + "=" + escapeUrlValues(attr[key]);
call_ajax(
oGeneralProperties.path_server +
=====================================
share/server/core/defines/global.php
=====================================
@@ -24,7 +24,7 @@
*****************************************************************************/
// NagVis Version
-const CONST_VERSION = '1.10.3';
+const CONST_VERSION = '1.10.4';
// Set PHP error handling to standard level
// Different levels for php versions below 5.1 because PHP 5.1 reports
View it on GitLab: https://salsa.debian.org/nagios-team/nagvis/-/commit/b99c7e8d97715d554d6ea330062b38c9426732f3
--
View it on GitLab: https://salsa.debian.org/nagios-team/nagvis/-/commit/b99c7e8d97715d554d6ea330062b38c9426732f3
You're receiving this email because of your account on salsa.debian.org. Manage all notifications: https://salsa.debian.org/-/profile/notifications | Help: https://salsa.debian.org/help
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-nagios-changes/attachments/20260526/7d41ff16/attachment-0001.htm>
More information about the pkg-nagios-changes
mailing list