From 81c46073a70943793c2159730ba3c27fc02a42e2 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 27 Nov 2017 11:57:08 -0500 Subject: [PATCH] remove some brackets --- web/includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/includes/functions.php b/web/includes/functions.php index e2a93849b..7cb81c23e 100644 --- a/web/includes/functions.php +++ b/web/includes/functions.php @@ -1325,7 +1325,7 @@ function addFilterTerm( $filter, $position, $term=false ) { unset( $term['cnj'] ); array_splice( $filter['Query']['terms'], $position, 0, array( $term?$term:array() ) ); - return( $filter ); + return $filter; } function delFilterTerm( $filter, $position ) { @@ -1335,7 +1335,7 @@ function delFilterTerm( $filter, $position ) { $position = count($filter['Query']['terms']); array_splice( $filter['Query']['terms'], $position, 1 ); - return( $filter ); + return $filter; } function getPagination( $pages, $page, $maxShortcuts, $query, $querySep='&' ) {