diff options
| author | Obfuscoder | 2014-10-19 11:54:16 +0200 | 
|---|---|---|
| committer | Obfuscoder | 2014-10-19 11:54:16 +0200 | 
| commit | dd80027b51b3ee71027a2612595aee38e38c0d6e (patch) | |
| tree | 0f0b84efd10e9288695d86b69de324c467fe4e7b /scripts/remote.pl | |
| parent | 263a56d196da657b72ccf2b195b50008d6a988dc (diff) | |
| download | scripts.irssi.org-dd80027b51b3ee71027a2612595aee38e38c0d6e.tar.bz2 | |
Fix perlcritic issues for all scripts starting with m to r
Diffstat (limited to 'scripts/remote.pl')
| -rw-r--r-- | scripts/remote.pl | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/scripts/remote.pl b/scripts/remote.pl index 0eb794e..043be6e 100644 --- a/scripts/remote.pl +++ b/scripts/remote.pl @@ -1,5 +1,7 @@  #!/usr/bin/perl -w +use strict;  use Irssi 20010120.0250 (); +use vars qw($VERSION %IRSSI);  $VERSION = "1";  %IRSSI = (      authors     => 'David Leadbeater', @@ -20,7 +22,6 @@ $VERSION = "1";  # so you can do mode #channel +o whoever  # but it will allow any command, yes it's dangerous if someone knows the  # password they can access just about anything your user account can.... -use strict;  # put a crypted password here  my $password = "pp00000000";  my($login,$remote); | 
