<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Joop,<br>
 <br>
No. I waslooking thru <u>Perl for Dummies</u> and <u>Learning Perl</u>
and coul;dn't find any reference for the "set" command". I'll try that
now. Thanks.<br>
<br>
Kenn<br>
LBNL<br>
<br>
On 2/1/2010 12:15 PM, Joop van de Wege wrote:
<blockquote cite="mid:4B673672.3050204@mococo.nl" type="cite">Ken
Crocker wrote:
  <br>
  <blockquote type="cite">To list,
    <br>
    <br>
In the past (3.6.4) I was able to add a couple values for my @active
ticket statuses by modifying the RT_SiteCOnfig.pm values thus:
    <br>
    <br>
@ActiveStatus = ('new', 'open', 'pending QA', 'QA approvd', 'stalled')
unless @ActiveStatus;
    <br>
    <br>
Now, with the more stringent syntax, I have this:
    <br>
    <br>
Set(@ActiveStatus, (qw(''new' 'open' 'pending QA' 'QA approvd'
'stalled')));
    <br>
    <br>
The problem is that the single quotes end up as part of the value. I
can't just remove them because I need to protect the integreity of two
values that include an embedded space ('pending QA' and 'QA approvd').
    <br>
  </blockquote>
Did you try to use double quotes?, like
  <br>
Set(@ActiveStatus, (qw("'new' 'open' 'pending QA' 'QA approvd'
'stalled'")));
  <br>
  <br>
  <br>
Regards,
  <br>
  <br>
Joop
  <br>
  <br>
  <br>
</blockquote>
</body>
</html>