projects
/
freeside.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc9b5a1
)
RT#18439: Sorting routers alphabetically, routers disappear
author
Jonathan Prykop
<jonathan@freeside.biz>
Tue, 10 Nov 2015 00:53:42 +0000
(18:53 -0600)
committer
Jonathan Prykop
<jonathan@freeside.biz>
Tue, 10 Nov 2015 00:56:16 +0000
(18:56 -0600)
httemplate/browse/router.cgi
patch
|
blob
|
history
diff --git
a/httemplate/browse/router.cgi
b/httemplate/browse/router.cgi
index
ef8ad31
..
85512f8
100644
(file)
--- 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' ).