From 09bdc89b2cf12d7b4f4dd1376975b4c9164b4249 Mon Sep 17 00:00:00 2001 From: Jonathan Prykop Date: Mon, 9 Nov 2015 18:53:42 -0600 Subject: [PATCH] RT#18439: Sorting routers alphabetically, routers disappear --- httemplate/browse/router.cgi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/httemplate/browse/router.cgi b/httemplate/browse/router.cgi index ef8ad3160..85512f8df 100644 --- a/httemplate/browse/router.cgi +++ b/httemplate/browse/router.cgi @@ -43,11 +43,13 @@ my @menubar = ( 'Add a new router', "${p2}edit/router.cgi" ); if ($cgi->param('hidecustomerrouters') eq '1') { $extra_sql = 'WHERE svcnum > 0'; - $cgi->param('hidecustomerrouters', 0); + $cgi->delete('hidecustomerrouters'); push @menubar, 'Show customer routers', $cgi->self_url(); + $cgi->param('hidecustomerrouters', 1); } else { $cgi->param('hidecustomerrouters', 1); push @menubar, 'Hide customer routers', $cgi->self_url(); + $cgi->delete('hidecustomerrouters'); } my $count_sql = $extra_sql. ( $extra_sql =~ /WHERE/ ? ' AND' : 'WHERE' ). -- 2.11.0