Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions servcheck_ca.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
break;
case 'edit':
top_header();
data_edit();
data_ca_edit();
bottom_footer();

break;
Expand Down Expand Up @@ -169,7 +169,7 @@ function form_save() {
exit;
}

function data_edit() {
function data_ca_edit() {
global $servcheck_ca_fields;

// ================= input validation =================
Expand Down
4 changes: 2 additions & 2 deletions servcheck_credential.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
break;
case 'edit':
top_header();
data_edit();
data_credential_edit();
bottom_footer();

break;
Expand Down Expand Up @@ -424,7 +424,7 @@ function form_save() {
exit;
}

function data_edit() {
function data_credential_edit() {
global $servcheck_credential_fields, $servcheck_help_credential;

// ================= input validation =================
Expand Down
4 changes: 2 additions & 2 deletions servcheck_proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
break;
case 'edit':
top_header();
data_edit();
data_proxy_edit();
bottom_footer();

break;
Expand Down Expand Up @@ -172,7 +172,7 @@ function form_save() {
exit;
}

function data_edit() {
function data_proxy_edit() {
global $servcheck_proxy_fields;

// ================= input validation =================
Expand Down
4 changes: 2 additions & 2 deletions servcheck_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
break;
case 'edit':
top_header();
data_edit();
data_test_edit();
bottom_footer();

break;
Expand Down Expand Up @@ -475,7 +475,7 @@ function purge_log_events($id) {
raise_message('test_log_purged', __('The Service Check history was purged for %s', $name, 'servcheck'), MESSAGE_LEVEL_INFO);
}

function data_edit() {
function data_test_edit() {
global $servcheck_test_fields, $service_types, $servcheck_help_test;

// ================= input validation =================
Expand Down