^ added to special characters that will be masked
tinyurl now also from acts
This commit is contained in:
parent
cd391d6609
commit
38252cc554
4 changed files with 4 additions and 0 deletions
|
@ -11,6 +11,7 @@ my $folder=$ARGV[0];
|
|||
my $nick=$ARGV[2];
|
||||
$nick=~s/\\/\\\\/g;
|
||||
$nick=~s/\|/\\\|/g;
|
||||
$nick=~s/\^/\\\^/g;
|
||||
|
||||
my @files;
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ my $folder=$ARGV[0];
|
|||
my $nick=$ARGV[2];
|
||||
$nick=~s/\\/\\\\/g;
|
||||
$nick=~s/\|/\\\|/g;
|
||||
$nick=~s/\^/\\\^/g;
|
||||
|
||||
my @files;
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ my $chan=$ARGV[1];
|
|||
my $nick=$ARGV[2];
|
||||
$nick=~s/\\/\\\\/g;
|
||||
$nick=~s/\|/\\\|/g;
|
||||
$nick=~s/\^/\\\^/g;
|
||||
|
||||
my @files;
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@ set url_length 80
|
|||
package require http 2.3
|
||||
|
||||
bind pubm - "*" scan_text
|
||||
bind act - "*" scan_text
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Name : scan_text
|
||||
|
|
Loading…
Reference in a new issue