Changeset 946


Ignore:
Timestamp:
11/08/23 18:19:25 (6 months ago)
Author:
Kris Deugau
Message:

/trunk

cgi-bin/search-rpc.cgi:

  • Fix trivial typo refreshing memory how to use the search RPC script
  • Update copyright and bring license comment into line
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cgi-bin/search-rpc.cgi

    r928 r946  
    11#!/usr/bin/perl
     2# ipdb/cgi-bin/search-rpc.cgi
    23# 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##
    419
    520use strict;
     
    250265
    251266  # Filter on "available", because we can.
    252   if (defined($args{available}) {
     267  if (defined($args{available})) {
    253268    # Flex input;  accept 1 or 0 as y/n respectively.
    254269    $args{available} =~ tr/10/yn/;
Note: See TracChangeset for help on using the changeset viewer.