mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-22 03:49:29 +01:00
applets/random_quote.pl: update random quote URL
This commit is contained in:
parent
0066c4a312
commit
e1eeaa7869
3
applets/random_quote.pl
vendored
3
applets/random_quote.pl
vendored
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user