minor bug fixes and cleanup
This commit is contained in:
@@ -40,7 +40,7 @@ Client has requested JSON format data and an endpoint under C</api>.
|
|||||||
=cut
|
=cut
|
||||||
|
|
||||||
sub request_is_api {
|
sub request_is_api {
|
||||||
return ((request->accept =~ m/(?:json|javascript)/) and (
|
return ((request->accept and request->accept =~ m/(?:json|javascript)/) and (
|
||||||
index(request->path, uri_for('/api/')->path) == 0
|
index(request->path, uri_for('/api/')->path) == 0
|
||||||
or
|
or
|
||||||
(param('return_url')
|
(param('return_url')
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ register_search_tab({
|
|||||||
description => 'Date Range in format "YYYY-MM-DD to YYYY-MM-DD"',
|
description => 'Date Range in format "YYYY-MM-DD to YYYY-MM-DD"',
|
||||||
},
|
},
|
||||||
age_invert => {
|
age_invert => {
|
||||||
description => 'Date Range is NOT within the supplied range',
|
description => 'Results should NOT be within daterange',
|
||||||
type => 'boolean',
|
type => 'boolean',
|
||||||
default => 'false',
|
default => 'false',
|
||||||
},
|
},
|
||||||
@@ -241,7 +241,7 @@ ajax '/ajax/content/search/node' => require_login sub {
|
|||||||
return unless $set and $set->has_rows;
|
return unless $set and $set->has_rows;
|
||||||
$set = $set->search_rs({}, { order_by => 'me.mac' });
|
$set = $set->search_rs({}, { order_by => 'me.mac' });
|
||||||
|
|
||||||
template 'ajax/search/node_by_ip.tt', {
|
return template 'ajax/search/node_by_ip.tt', {
|
||||||
macs => $set,
|
macs => $set,
|
||||||
archive_filter => {@active},
|
archive_filter => {@active},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user