From e1eeaa78692fcb12ca138605517f72589e74fa33 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 25 Dec 2022 18:09:23 -0800 Subject: [PATCH] applets/random_quote.pl: update random quote URL --- applets/random_quote.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/applets/random_quote.pl b/applets/random_quote.pl index c036e406..c6f41990 100755 --- a/applets/random_quote.pl +++ b/applets/random_quote.pl @@ -30,13 +30,12 @@ my @quotes; while (1) { if ($#ARGV < 0) { my %post = ('number' => '4', 'collection[]' => 'mgm', 'collection[]' => 'motivate'); - $response = $ua->post("http://www.quotationspage.com/random.php3", \%post); + $response = $ua->post("http://www.quotationspage.com/random.php", \%post); } else { my $arguments = join('+', @ARGV); my $author = ""; $arguments =~ s/\$nick/me/gi; - $arguments = uri_escape($arguments); if ($arguments =~ m/\-\-author[\s\+]+(.*)/i) { $author = $1;