Do something with $username and $admin.

Perl is warning you that you don't appear to be using those values, and that because of that something might be wrong.

Read perldoc -f our , perldoc vars and perldoc -f my to decide which one you need.

Note that the vars documentation has this note:

NOTE: The functionality provided by this pragma has been superseded by "our" declarations
The docs are your friend.

Update: I think I missed the obvious. Shouldn't it read as follows?

$username = $common::auth::user; $admin = $common::auth::admin;
Surely there is a nicer way of doing this? A small sub that returns the value you're after, perhaps?
package Foo; # Warning. Rubbish, untested code follows. sub get_admin { my $admin = "admin"; my $user = $ENV{"REMOTE_USER"}; return ($admin, $user); } package Bar; use Foo; @user_info = get_admin(); # Do stuff.

Cheers.

BazB


In reply to Re: suppress an error by BazB
in thread supress an error by nlafferty

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.