Skip to content

Commit

Permalink
Update passivecheck reciever to fix error/connection problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jomann09 committed Oct 14, 2021
1 parent 1c0ea48 commit 96c5c3c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.0.5 - 10/14/2021
------------------
- Updated jQuery to version 3.6.0 -JO
- Fixed spooled passive check reciever for Naigos XI erroring/not connecting to NDO db -JO

2.0.4 - 02/12/2020
------------------
- Updated Bootstrap to version 4.6.0
Expand Down
2 changes: 0 additions & 2 deletions server/includes/jquery-3.5.1.min.js

This file was deleted.

2 changes: 2 additions & 0 deletions server/includes/jquery-3.6.0.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion server/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function display_form()
<html>
<head>
<title>Nagios Remote Data Processor</title>
<script type="text/javascript" src="includes/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="includes/jquery-3.6.0.min.js"></script>
<link href="includes/bootstrap-4.6.0.min.css" rel="stylesheet" />
<script type="text/javascript" src="includes/bootstrap-4.6.0.bundle.min.js"></script>
<style>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*
*****************************************************************************/

define("CFG_ONLY", 1);
require_once(dirname(__FILE__) . "/../../config.inc.php");
require_once(dirname(__FILE__) . "/../../includes/utils.inc.php");

Expand Down Expand Up @@ -291,7 +292,7 @@ function nrdp_write_check_output_to_ndo($hostname, $servicename, $state, $output

$dbserver = grab_array_var($ndodb, "dbserver");
$user = grab_array_var($ndodb, "user");
$pass = grab_array_var($ndodb, "pass");
$pass = grab_array_var($ndodb, "pwd");
$db = grab_array_var($ndodb, "db");


Expand Down

0 comments on commit 96c5c3c

Please sign in to comment.