Changeset 946
- Timestamp:
- 11/08/23 18:19:25 (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/search-rpc.cgi
r928 r946 1 1 #!/usr/bin/perl 2 # ipdb/cgi-bin/search-rpc.cgi 2 3 # XMLRPC interface to IPDB search 3 # Copyright (C) 2017 Kris Deugau <kdeugau@deepnet.cx> 4 # Copyright (C) 2017,2019,2023 - Kris Deugau <kdeugau@deepnet.cx> 5 # 6 # This program is free software: you can redistribute it and/or modify 7 # it under the terms of the GNU General Public License as published by 8 # the Free Software Foundation, either version 3 of the License, or 9 # (at your option) any later version. 10 # 11 # This program is distributed in the hope that it will be useful, 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 # GNU General Public License for more details. 15 # 16 # You should have received a copy of the GNU General Public License 17 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 ## 4 19 5 20 use strict; … … 250 265 251 266 # Filter on "available", because we can. 252 if (defined($args{available}) {267 if (defined($args{available})) { 253 268 # Flex input; accept 1 or 0 as y/n respectively. 254 269 $args{available} =~ tr/10/yn/;
Note:
See TracChangeset
for help on using the changeset viewer.