[Rt-commit] rt branch, 3.6.11-releng, created. rt-3.6.10-30-gc320dce

Kevin Falcone falcone at bestpractical.com
Thu Apr 14 10:14:38 EDT 2011


The branch, 3.6.11-releng has been created
        at  c320dceb66d59b46178555f3b96ba262bc7da472 (commit)

- Log -----------------------------------------------------------------
commit 3f784c4a35096fa24d2f5f1805453372db823ab3
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Mon Mar 28 19:57:51 2011 -0400

    Override Limit further to force values to NULL for IS and IS NOT
    
    Values for IS and IS NOT aren't quoted by DBIx::SearchBuilder's Limit.
    This leads to a SQL injection vulnerability when user provided values
    are passed into Limit, such as through TicketSQL.  Forcing to NULL
    closes this vulnerability and prevents accidental invalid SQL across RT.

diff --git a/lib/RT/SearchBuilder.pm b/lib/RT/SearchBuilder.pm
index 62ae13e..aeb0dd9 100755
--- a/lib/RT/SearchBuilder.pm
+++ b/lib/RT/SearchBuilder.pm
@@ -298,14 +298,27 @@ This Limit sub calls SUPER::Limit, but defaults "CASESENSITIVE" to 1, thus
 making sure that by default lots of things don't do extra work trying to 
 match lower(colname) agaist lc($val);
 
+We also force VALUE to C<NULL> when the OPERATOR is C<IS> or C<IS NOT>.
+This ensures that we don't pass invalid SQL to the database or allow SQL
+injection attacks when we pass through user specified values.
+
 =cut
 
 sub Limit {
     my $self = shift;
-    my %args = ( CASESENSITIVE => 1,
-                 @_ );
+    my %args = (
+        CASESENSITIVE => 1,
+        @_
+    );
+
+    # We use the same regex here that DBIx::SearchBuilder uses to exclude
+    # values from quoting
+    if ( ($args{'OPERATOR'} || '') =~ /IS/i ) {
+        # Don't pass anything but NULL for IS and IS NOT
+        $args{'VALUE'} = 'NULL';
+    }
 
-    return $self->SUPER::Limit(%args);
+    $self->SUPER::Limit(%args);
 }
 
 # }}}

commit c1da8c75153fd180f46cae6d55bec17303fcb378
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Wed Mar 30 12:10:35 2011 -0400

    Limit watcher subfields to a valid subset
    
    Previously you could search on user fields which shouldn't be
    accessible, such as Comments and Password.  Unfortunately we can't build
    the valid list of fields from RT::User's accessible hashes since search
    historically lets you limit on fields which aren't publically
    accessible.
    
    This also closes a SQL injection vulnerability which allowed you access
    to the WHERE clause, potentially returning data not normally available.
    The vulnerability exploited that everything after the first dot (.) in a
    watcher TicketSQL clause was passed in to Limit as FIELD.
    
    Like other TicketSQL methods, we die to throw an error on invalid
    subfields.

diff --git a/html/Search/Elements/SelectPersonType b/html/Search/Elements/SelectPersonType
index e2a9a21..a8c49ad 100644
--- a/html/Search/Elements/SelectPersonType
+++ b/html/Search/Elements/SelectPersonType
@@ -72,7 +72,7 @@ else {
    @types = qw(Requestor Cc AdminCc Watcher Owner QueueCc QueueAdminCc QueueWatcher);
 }
 
-my @subtypes = qw(EmailAddress Name RealName Nickname Organization Address1 Address2 WorkPhone HomePhone MobilePhone PagerPhone id);
+my @subtypes = @{ $RT::Tickets::SEARCHABLE_SUBFIELDS{'User'} };
 
 </%INIT>
 <%ARGS>
diff --git a/lib/RT/Tickets_Overlay.pm b/lib/RT/Tickets_Overlay.pm
index 5378e71..274a94d 100755
--- a/lib/RT/Tickets_Overlay.pm
+++ b/lib/RT/Tickets_Overlay.pm
@@ -152,6 +152,13 @@ my %FIELD_METADATA = (
     HasNoAttribute     => [ 'HASATTRIBUTE', 0 ],
 );
 
+our %SEARCHABLE_SUBFIELDS = (
+    User => [qw(
+        EmailAddress Name RealName Nickname Organization Address1 Address2
+        WorkPhone HomePhone MobilePhone PagerPhone id
+    )],
+);
+
 # Mapping of Field Type to Function
 my %dispatch = (
     ENUM            => \&_EnumLimit,
@@ -845,6 +852,13 @@ sub _WatcherLimit {
     my $type = $meta->[1] || '';
     my $class = $meta->[2] || 'Ticket';
 
+    # Bail if the subfield is not allowed
+    if (    $rest{SUBKEY}
+        and not grep { $_ eq $rest{SUBKEY} } @{$SEARCHABLE_SUBFIELDS{'User'}})
+    {
+        die "Invalid watcher subfield: '$rest{SUBKEY}'";
+    }
+
     # Owner was ENUM field, so "Owner = 'xxx'" allowed user to
     # search by id and Name at the same time, this is workaround
     # to preserve backward compatibility

commit fc4bdf1430bf22971e65f08b22a7f23db1327a1c
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Fri Apr 1 11:46:26 2011 -0400

    Prevent FIELD- and OPERATOR- based SQL injection at the RT::SB level
    
    Provide a whitelist of possible operators to use, and restrict field to
    being /^\w*$/.  Any arguments not matching this will instead log a
    critical message and insert a clause which should never match.
    
    In the two places we attempt to be clever, and generate the SQL
    "FUNCTION( alias.field ) = 42" by putting "FUNCTION( alias" as the
    ALIAS, and "field )" as the FIELD -- which violates this constraint.
    Provide a new FUNCTION parameter, which walks around the new
    restriction, and does the split across the '.' for you.  This should
    only be used if you are certain that you trust the data that the
    FUNCTION argument is built up from.

diff --git a/lib/RT/SearchBuilder.pm b/lib/RT/SearchBuilder.pm
index 62ae13e..75c6953 100755
--- a/lib/RT/SearchBuilder.pm
+++ b/lib/RT/SearchBuilder.pm
@@ -302,10 +302,32 @@ match lower(colname) agaist lc($val);
 
 sub Limit {
     my $self = shift;
-    my %args = ( CASESENSITIVE => 1,
-                 @_ );
+    my %ARGS = (
+        CASESENSITIVE => 1,
+        OPERATOR => '=',
+        @_,
+    );
 
-    return $self->SUPER::Limit(%args);
+    if ($ARGS{FUNCTION}) {
+        ($ARGS{ALIAS}, $ARGS{FIELD}) = split /\./, delete $ARGS{FUNCTION}, 2;
+        $self->SUPER::Limit(%ARGS);
+    } elsif ($ARGS{FIELD} =~ /\W/
+          or $ARGS{OPERATOR} !~ /^(=|<|>|!=|<>|<=|>=
+                                  |(NOT\s*)?LIKE
+                                  |(NOT\s*)?(STARTS|ENDS)WITH
+                                  |(NOT\s*)?MATCHES
+                                  |IS(\s*NOT)?
+                                  |IN)$/ix) {
+        $RT::Logger->crit("Possible SQL injection attack: $ARGS{FIELD} $ARGS{OPERATOR}");
+        $self->SUPER::Limit(
+            %ARGS,
+            FIELD    => 'id',
+            OPERATOR => '<',
+            VALUE    => '0',
+        );
+    } else {
+        $self->SUPER::Limit(%ARGS);
+    }
 }
 
 # }}}

commit ff21824aa633eb915e86a0dd9a16eefaed0e98bd
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Mon Mar 28 18:33:47 2011 -0400

    Restrict PrimaryGroupBy to only the explicit options that we offer
    
    Not limiting the PrimaryGroupBy allows:
    
     * SQL injection; the "Group By" clause is not escaped when inserted
       into the generated SQL.  Use of DBI's prepared statements disallows
       the attacker from running more than one SQL statement, thus
       precluding destructive queries such as "DELETE FROM" or "DROP TABLE",
       but complex data extraction is still feasable.
    
     * Information leakage; we blindly allow grouping even by valid columns
       such as 'Subject', which allows an attacker to see the subjects of
       tickets they do not otherwise have permission to view.
       $UseSQLForACLChecks protects against this by pre-limiting the
       resultset to tickets the current user has access to.

diff --git a/html/Search/Chart b/html/Search/Chart
index 26249a7..14f8bbc 100644
--- a/html/Search/Chart
+++ b/html/Search/Chart
@@ -70,6 +70,8 @@ use RT::Report::Tickets;
 my $tix = RT::Report::Tickets->new( $session{'CurrentUser'} );
 $tix->FromSQL( $Query );
 my $count_name = $tix->Column( FUNCTION => 'COUNT', FIELD => 'id' );
+my %AllowedGroupings = reverse $tix->Groupings( Query => $Query );
+$PrimaryGroupBy = 'Queue' unless exists $AllowedGroupings{$PrimaryGroupBy};
 $tix->GroupBy( FIELD => $PrimaryGroupBy );
 my $value_name = $tix->Column( FIELD => $PrimaryGroupBy );
 
diff --git a/html/Search/Elements/Chart b/html/Search/Elements/Chart
index 37a4da2..f80a011 100644
--- a/html/Search/Elements/Chart
+++ b/html/Search/Elements/Chart
@@ -56,6 +56,8 @@ use RT::Report::Tickets;
 my $tix = RT::Report::Tickets->new( $session{'CurrentUser'} );
 $tix->FromSQL( $Query );
 my $count_name = $tix->Column( FUNCTION => 'COUNT', FIELD => 'id' );
+my %AllowedGroupings = reverse $tix->Groupings( Query => $Query );
+$PrimaryGroupBy = 'Queue' unless exists $AllowedGroupings{$PrimaryGroupBy};
 $tix->GroupBy( FIELD => $PrimaryGroupBy );
 my $value_name = $tix->Column( FIELD => $PrimaryGroupBy );
 

commit 8f29b230b1526e9947dce9ec25389f5b79482c28
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Tue Apr 5 12:10:02 2011 -0400

    Reject requests for private components

diff --git a/html/autohandler b/html/autohandler
index 57ab22a..8efe070 100755
--- a/html/autohandler
+++ b/html/autohandler
@@ -126,6 +126,8 @@ unless ( $session{'CurrentUser'} && $session{'CurrentUser'}->Id ) {
 # Set the proper encoding for the current language handle
 $r->content_type("text/html; charset=utf-8");
 
+RT::Interface::Web::MaybeRejectPrivateComponentRequest();
+
 # If it's a noauth file, don't ask for auth.
 if ( $m->base_comp->path =~ $RT::WebNoAuthRegex ) {
     $m->comp( { base_comp => $m->request_comp }, $m->fetch_next, %ARGS);
diff --git a/lib/RT/Interface/Web.pm b/lib/RT/Interface/Web.pm
index 4e5fca1..05d96ec 100755
--- a/lib/RT/Interface/Web.pm
+++ b/lib/RT/Interface/Web.pm
@@ -177,7 +177,36 @@ sub WebExternalAutoInfo {
 
 # }}}
 
+=head2 MaybeRejectPrivateComponentRequest
 
+This function will reject calls to private components, like those under
+C</Elements>. If the requested path is a private component then we will
+abort with a C<403> error.
+
+=cut
+
+sub MaybeRejectPrivateComponentRequest {
+    my $m = $HTML::Mason::Commands::m;
+    my $path = $m->request_comp->path;
+
+    # We do not check for dhandler here, because requesting our dhandlers
+    # directly is okay. Mason will invoke the dhandler with a dhandler_arg of
+    # 'dhandler'.
+
+    if ($path =~ m{
+            / # leading slash
+            ( Elements    |
+              _elements   | # mobile UI
+              Widgets     |
+              autohandler | # requesting this directly is suspicious
+              l           ) # loc component
+            ( $ | / ) # trailing slash or end of path
+        }xi) {
+            $m->abort(403);
+    }
+
+    return;
+}
 
 =head2 Redirect URL
 

commit 9796a94e739c3467c9bf343005c67ed634ed2645
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Mon Apr 4 12:48:13 2011 -0400

    Copy 4.0's path-traversal.t and tweak it for 3.8

diff --git a/t/web/path-traversal.t b/t/web/path-traversal.t
new file mode 100644
index 0000000..81fa2d7
--- /dev/null
+++ b/t/web/path-traversal.t
@@ -0,0 +1,15 @@
+use strict;
+use warnings;
+
+use RT::Test tests => 7;
+
+my ($baseurl, $agent) = RT::Test->started_ok;
+
+$agent->get("$baseurl/NoAuth/../Elements/HeaderJavascript");
+is($agent->status, 400);
+$agent->warning_like(qr/Invalid request.*aborting/,);
+
+$agent->get("$baseurl/NoAuth/../../../etc/RT_Config.pm");
+is($agent->status, 400);
+$agent->warning_like(qr/Invalid request.*aborting/,);
+

commit fa109b6c144516ab1e5d6275aa48625e96004a20
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Apr 5 14:17:52 2011 -0400

    Forbid /. in Standalone

diff --git a/lib/RT/Interface/Web/Standalone.pm b/lib/RT/Interface/Web/Standalone.pm
index f625dd8..f5417ab 100755
--- a/lib/RT/Interface/Web/Standalone.pm
+++ b/lib/RT/Interface/Web/Standalone.pm
@@ -74,6 +74,14 @@ sub handle_request {
 
     Module::Refresh->refresh if $RT::DevelMode;
 
+    # Each environment has its own way of handling .. and so on in paths,
+    # so RT consistently forbids such paths.
+    if ( $cgi->path_info =~ m{/\.} ) {
+        $RT::Logger->crit("Invalid request for ".$cgi->path_info." aborting");
+        print STDOUT "HTTP/1.0 400\r\n\r\n";
+        return RT::Interface::Web::Handler->CleanupRequest();
+    }
+
     $self->SUPER::handle_request($cgi);
     $RT::Logger->crit($@) if ($@);
 

commit ecd9fc5e7d4609510e39024682dffbd2e1a668da
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Apr 5 14:19:36 2011 -0400

    Traversal protection for mason_handler.fcgi.in

diff --git a/bin/mason_handler.fcgi.in b/bin/mason_handler.fcgi.in
index 26842d3..e51ba5a 100755
--- a/bin/mason_handler.fcgi.in
+++ b/bin/mason_handler.fcgi.in
@@ -70,6 +70,17 @@ while ( my $cgi = CGI::Fast->new ) {
     Module::Refresh->refresh if $RT::DevelMode;
     RT::ConnectToDatabase();
 
+    # Each environment has its own way of handling .. and so on in paths,
+    # so RT consistently forbids such paths.
+    if ( $cgi->path_info =~ m{/\.} ) {
+        $RT::Logger->crit("Invalid request for ".$cgi->path_info." aborting");
+        print STDOUT "HTTP/1.0 400\r\n\r\n";
+
+        RT::Interface::Web::Handler->CleanupRequest();
+
+        next;
+    }
+
     if ( ( !$Handler->interp->comp_exists( $cgi->path_info ) )
         && ( $Handler->interp->comp_exists( $cgi->path_info . "/index.html" ) ) ) {
         $cgi->path_info( $cgi->path_info . "/index.html" );

commit 89321a2493094d898801a93d462e56fdb8ee91f2
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Apr 5 14:21:07 2011 -0400

    Traversal protection for speedycgi and svc

diff --git a/bin/mason_handler.scgi.in b/bin/mason_handler.scgi.in
index 2d77e8f..c2c1b95 100755
--- a/bin/mason_handler.scgi.in
+++ b/bin/mason_handler.scgi.in
@@ -57,6 +57,18 @@ require CGI;
 RT::Init();
 
 my $cgi = CGI->new;
+
+# Each environment has its own way of handling .. and so on in paths,
+# so RT consistently forbids such paths.
+if ( $cgi->path_info =~ m{/\.} ) {
+    $RT::Logger->crit("Invalid request for ".$cgi->path_info." aborting");
+    print STDOUT "HTTP/1.0 400\r\n\r\n";
+
+    RT::Interface::Web::Handler->CleanupRequest();
+
+    return 0;
+}
+
 if ( ( !$Handler->interp->comp_exists( $cgi->path_info ) )
     && ( $Handler->interp->comp_exists( $cgi->path_info . "/index.html" ) ) ) {
     $cgi->path_info( $cgi->path_info . "/index.html" );
diff --git a/bin/mason_handler.svc.in b/bin/mason_handler.svc.in
index 3bf851c..4159733 100755
--- a/bin/mason_handler.svc.in
+++ b/bin/mason_handler.svc.in
@@ -230,6 +230,17 @@ RT::Init();
 while( my $cgi = CGI::Fast->new ) {
     my $comp = $ENV{'PATH_INFO'};
 
+    # Each environment has its own way of handling .. and so on in paths,
+    # so RT consistently forbids such paths.
+    if ( $cgi->path_info =~ m{/\.} ) {
+        $RT::Logger->crit("Invalid request for ".$cgi->path_info." aborting");
+        print STDOUT "HTTP/1.0 400\r\n\r\n";
+
+        RT::Interface::Web::Handler->CleanupRequest();
+
+        next;
+    }
+
     $comp = $1 if ($comp =~ /^(.*)$/);
     $comp =~ s|^$RT::WebPath\b||i;
     $comp .= "index.html" if ($comp =~ /\/$/);

commit 5a5bc1807b9cb1b00858a504619dd154da259d74
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Apr 5 14:22:33 2011 -0400

    Traversal protection for webmux.pl (mod_perl)
    
        When requesting /NoAuth/../%45lements/HeaderJavascript?foo=1 these are the
        responses from the various methods in Apache2::RequestRec:
    
            filename: /opt/rt3/share/html/Elements/HeaderJavascript
            path_info: (empty)
            uri: /Elements/HeaderJavascript
            unparsed_uri: /NoAuth/../%45lements/HeaderJavascript?foo=1
    
        None of these are what we need. Ideally what we would get is:
    
            ideal: /NoAuth/../Elements/HeaderJavascript
    
        ..but we don't get that, so we have to construct it ourselves from
        unparsed_uri by parsing (and escaping) it. We need to make sure to ignore
        query parameters in the /. check since those are perfectly valid.

diff --git a/bin/webmux.pl.in b/bin/webmux.pl.in
index b21d026..5ce1d39 100755
--- a/bin/webmux.pl.in
+++ b/bin/webmux.pl.in
@@ -107,6 +107,19 @@ sub handler {
     local $SIG{__WARN__};
     local $SIG{__DIE__};
 
+    # none of the methods in $r gives us the information we want (most
+    # canonicalize /foo/../bar to /bar which is exactly what we want to avoid)
+    my $uri = URI->new("http://".$r->hostname.$r->unparsed_uri);
+    my $path = URI::Escape::uri_unescape($uri->path);
+
+    ## Each environment has its own way of handling .. and so on in paths,
+    ## so RT consistently forbids such paths.
+    if ( $path =~ m{/\.} ) {
+        $RT::Logger->crit("Invalid request for ".$path." aborting");
+        RT::Interface::Web::Handler->CleanupRequest();
+        return 400;
+    }
+
     if ($r->content_type =~ m/^httpd\b.*\bdirectory/i) {
         use File::Spec::Unix;
         # Our DirectoryIndex is always index.html, regardless of httpd settings

commit 25d619090f11d47bcb964acb82f438388ef8afc1
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Tue Apr 5 15:06:00 2011 -0400

    Use only the integer number of seconds in the Refresh header
    
        Otherwise attackers could inject additional content into the header to
        convince the browser to, say, redirect to a different site

diff --git a/html/Elements/Header b/html/Elements/Header
index 02450b1..b3e88d9 100755
--- a/html/Elements/Header
+++ b/html/Elements/Header
@@ -53,8 +53,8 @@
 
 <title><%$Title%></title>
 
-% if ($Refresh && $Refresh > 0) {
-    <meta http-equiv="refresh" content="<%$Refresh%>" />
+% if ($Refresh && $Refresh =~ /^(\d+)/ && $1 > 0) {
+    <meta http-equiv="refresh" content="<% $1 %>" />
 % }
 
 <link rel="shortcut icon" href="<%$RT::WebImagesURL%>/favicon.png" type="image/png" />

commit 9444a84cf1c042c4ad65e025ca3962aeaa1dc6f3
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Mar 29 10:52:56 2011 -0400

    Disallow SQL injection in FIELD argument to OrderBy
    
    A number of locations blindly pass OrderBy clauses from the user into
    the FIELD of OrderByCols, which provides no escaping or sanity checking.
    As a short-term fix, limit the FIELD to /^[a-zA-Z0-9_]*$/ at the
    RT::SearchBuilder level.
    
    There is one place which injects logic into the ORderByCols FIELD;
    namely, the "PAW sort" feature, which sorts the current user's tickets,
    followed by unowned tickets, followed by all other tickets.  Allow this
    codepath by adding a FUNCTION field to OrderByCols which steps around
    the limit mentioned above.  This particular use is safe because no
    user-specified data is used in the function which is built.
    
    The severity of this SQL injection is limited by the ability to create a
    single dangerous statement by appending to a "SELECT ... FROM ... ORDER
    BY main." statement.  The lack of parens around the SELECT statement
    precludes a UNION attack, and the use of DBI prepared statements
    disallows the attacker from running more than one SQL statement, thus
    precluding destructive queries such as "DELETE FROM" or "DROP TABLE".

diff --git a/lib/RT/SearchBuilder.pm b/lib/RT/SearchBuilder.pm
index 62ae13e..eede59c 100755
--- a/lib/RT/SearchBuilder.pm
+++ b/lib/RT/SearchBuilder.pm
@@ -92,6 +92,17 @@ sub _Init  {
 
 # {{{ sub LimitToEnabled
 
+sub OrderByCols {
+    my $self = shift;
+    my @sort;
+    for my $s (@_) {
+        next if defined $s->{FIELD} and $s->{FIELD} =~ /\W/;
+        $s->{FIELD} = $s->{FUNCTION} if $s->{FUNCTION};
+        push @sort, $s;
+    }
+    return $self->SUPER::OrderByCols( @sort );
+}
+
 =head2 LimitToEnabled
 
 Only find items that haven\'t been disabled
diff --git a/lib/RT/Tickets_Overlay.pm b/lib/RT/Tickets_Overlay.pm
index 5378e71..f32660a 100755
--- a/lib/RT/Tickets_Overlay.pm
+++ b/lib/RT/Tickets_Overlay.pm
@@ -1688,11 +1688,11 @@ sub OrderByCols {
 
            # Ticket.Owner  1 0 0
            my $ownerId = $self->CurrentUser->Id;
-           push @res, { %$row, FIELD => "Owner=$ownerId", ORDER => $order } ;
+           push @res, { %$row, FIELD => undef, FUNCTION => "Owner=$ownerId", ORDER => $order } ;
 
            # Unowned Tickets 0 1 0
            my $nobodyId = $RT::Nobody->Id;
-           push @res, { %$row, FIELD => "Owner=$nobodyId", ORDER => $order } ;
+           push @res, { %$row, FIELD => undef, FUNCTION => "Owner=$nobodyId", ORDER => $order } ;
 
            push @res, { %$row, FIELD => "Priority", ORDER => $order } ;
        }

commit 858ad18d80b41184fd1a5859ba12517be63c4bc9
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Fri Apr 8 11:14:27 2011 -0400

    Disallow arbitrary URLs from being redirected to during logout
    
    Failure to do this is a cross-site scripting vulnerability.

diff --git a/html/NoAuth/Logout.html b/html/NoAuth/Logout.html
index 9af4a93..e7ea25c 100755
--- a/html/NoAuth/Logout.html
+++ b/html/NoAuth/Logout.html
@@ -60,6 +60,7 @@
 % $m->abort();
 
 <%INIT>
+my $URL = $RT::WebPath."/";
 $m->comp('/Elements/Callback', _CallbackName => 'BeforeSessionDelete', %ARGS);
 
 if (defined %session) {
@@ -68,7 +69,3 @@ if (defined %session) {
 
 $m->comp('/Elements/Callback', _CallbackName => 'AfterSessionDelete', %ARGS);
 </%INIT>
-
-<%ARGS>
-$URL => $RT::WebPath."/"
-</%ARGS>

commit 8f1beb5bcfef0b20a79ffd1ec76162afa44947fb
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Mon Mar 28 18:33:47 2011 -0400

    Update the two reports which used the short form of User in charting

diff --git a/html/Tools/Reports/ResolvedByDates.html b/html/Tools/Reports/ResolvedByDates.html
index b0a66f4..14d9933 100644
--- a/html/Tools/Reports/ResolvedByDates.html
+++ b/html/Tools/Reports/ResolvedByDates.html
@@ -79,7 +79,7 @@ $q->LoadByCols(Name => $Queue);
 % if ($Queue) { $query .= " AND Queue = '$Queue'"}
 % if ($ResolvedBefore) { $query .= " AND Resolved < '".$before->ISO."'"; }
 % if ($ResolvedAfter) { $query .= " AND Resolved > '".$after->ISO."'"}
-% my $groupby = 'Owner';
+% my $groupby = 'Owner.Name';
 <& /Search/Elements/Chart, Query => $query, PrimaryGroupBy => $groupby &>
 % }
 
diff --git a/html/Tools/Reports/ResolvedByOwner.html b/html/Tools/Reports/ResolvedByOwner.html
index 7e60a13..951e878 100644
--- a/html/Tools/Reports/ResolvedByOwner.html
+++ b/html/Tools/Reports/ResolvedByOwner.html
@@ -59,7 +59,7 @@ $q->LoadByCols(Name => $Queue);
 % if ($Queue) {
 % # if we have a queue, do the search
 % my $query = "Status = 'resolved' AND Queue = '$Queue'";
-% my $groupby = 'Owner';
+% my $groupby = 'Owner.Name';
 <& /Search/Elements/Chart, Query => $query, PrimaryGroupBy => $groupby &>
 % }
 

commit 4333cffb846b4dff5625aac93f53ca8aee2f4fb0
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Apr 12 16:10:27 2011 -0400

    Use Apache->the_request for mod_perl1 compat, instead of ->unparsed_uri

diff --git a/bin/webmux.pl.in b/bin/webmux.pl.in
index 5ce1d39..b205f6d 100755
--- a/bin/webmux.pl.in
+++ b/bin/webmux.pl.in
@@ -109,7 +109,8 @@ sub handler {
 
     # none of the methods in $r gives us the information we want (most
     # canonicalize /foo/../bar to /bar which is exactly what we want to avoid)
-    my $uri = URI->new("http://".$r->hostname.$r->unparsed_uri);
+    my (undef, $requested) = split ' ', $r->the_request, 3;
+    my $uri = URI->new("http://".$r->hostname.$requested);
     my $path = URI::Escape::uri_unescape($uri->path);
 
     ## Each environment has its own way of handling .. and so on in paths,

commit df70fc29fcea3d54d2db0a44302cb767a8823200
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Fri Apr 8 12:58:23 2011 -0400

    Remove the goto parameter from the login form
    
    Previously this parameter was completely unchecked, allowing an attacker
    to present an RT login form to a user that submitted credentials to a
    completely different site.
    
    Removal may break existing sites using the "feature", but that's an
    acceptable problem.

diff --git a/html/Elements/Login b/html/Elements/Login
index 8cad96f..39e523f 100755
--- a/html/Elements/Login
+++ b/html/Elements/Login
@@ -60,10 +60,7 @@ if (UNIVERSAL::can($r, 'uri') and $r->uri =~ m{.*/(.*)}) {
     $req_uri = $1;
 }
 
-my $form_action = defined $goto             ? $goto
-                : defined $req_uri          ? $req_uri
-                :                             $RT::WebPath
-                ;
+my $form_action = defined $req_uri ? $req_uri : $RT::WebPath;
 </%INIT>
 
 <& /Elements/Callback, %ARGS, _CallbackName => 'Header' &>
@@ -133,6 +130,5 @@ my $form_action = defined $goto             ? $goto
 <%ARGS>
 $user => ""
 $pass => undef
-$goto => undef
 $Error => undef
 </%ARGS>

commit acf7869a4b120588a4871f04bfc87b60ff854710
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Wed Apr 6 10:56:20 2011 -0400

    Mark two known failing tests as TODO
    
    And ensure we don't accidentally pass TODO tests

diff --git a/lib/t/regression/22search_tix_by_watcher.t b/lib/t/regression/22search_tix_by_watcher.t
index 204c41c..8752eba 100644
--- a/lib/t/regression/22search_tix_by_watcher.t
+++ b/lib/t/regression/22search_tix_by_watcher.t
@@ -42,7 +42,7 @@ sub run_tests {
         $count++ foreach grep $_, values %{ $test{$key} };
         is($tix->Count, $count, "found correct number of ticket(s) by '$key'") or $error = 1;
 
-        my $good_tickets = 1;
+        my $good_tickets = ($tix->Count == $count);
         while ( my $ticket = $tix->Next ) {
             next if $test{$key}->{ $ticket->Subject };
             diag $ticket->Subject ." ticket has been found when it's not expected";
@@ -125,10 +125,10 @@ run_tests();
         { xy => 1, x => 1, y => 0, '-' => 0, z => 0 },
     'Subject NOT LIKE "x" AND Requestor != "not-exist at example.com"' =>
         { xy => 0, x => 0, y => 1, '-' => 1, z => 1 },
-    'Subject LIKE "x" OR Requestor = "not-exist at example.com"' =>
-        { xy => 1, x => 1, y => 0, '-' => 0, z => 0 },
-    'Subject NOT LIKE "x" OR Requestor = "not-exist at example.com"' =>
-        { xy => 0, x => 0, y => 1, '-' => 1, z => 1 },
+#    'Subject LIKE "x" OR Requestor = "not-exist at example.com"' =>
+#        { xy => 1, x => 1, y => 0, '-' => 0, z => 0 },
+#    'Subject NOT LIKE "x" OR Requestor = "not-exist at example.com"' =>
+#        { xy => 0, x => 0, y => 1, '-' => 1, z => 1 },
     'Subject LIKE "x" OR Requestor != "not-exist at example.com"' =>
         { xy => 1, x => 1, y => 1, '-' => 1, z => 1 },
     'Subject NOT LIKE "x" OR Requestor != "not-exist at example.com"' =>
@@ -150,6 +150,10 @@ TODO: {
     %test = (
         'Requestor = "x at example.com" AND Requestor = "y at example.com"'
             => { xy => 1, x => 0, y => 0, '-' => 0, z => 0 },
+        'Subject LIKE "x" OR Requestor = "not-exist at example.com"' =>
+            { xy => 1, x => 1, y => 0, '-' => 0, z => 0 },
+        'Subject NOT LIKE "x" OR Requestor = "not-exist at example.com"' =>
+            { xy => 0, x => 0, y => 1, '-' => 1, z => 1 },
     );
     run_tests();
 }

commit 60bac39d4cdf04e521737a9a566a9229e72e242e
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 19:59:36 2011 -0400

    Update copyright for 2011

diff --git a/Makefile.in b/Makefile.in
index 33a5dae..641612a 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/README b/README
index 398d8c4..f155764 100755
--- a/README
+++ b/README
@@ -320,7 +320,7 @@ To report a bug, send email to rt-bugs at fsck.com.
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/mason_handler.fcgi.in b/bin/mason_handler.fcgi.in
index 26842d3..f9f7827 100755
--- a/bin/mason_handler.fcgi.in
+++ b/bin/mason_handler.fcgi.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/mason_handler.scgi.in b/bin/mason_handler.scgi.in
index 2d77e8f..d0b69ff 100755
--- a/bin/mason_handler.scgi.in
+++ b/bin/mason_handler.scgi.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/mason_handler.svc.in b/bin/mason_handler.svc.in
index 3bf851c..54cf8aa 100755
--- a/bin/mason_handler.svc.in
+++ b/bin/mason_handler.svc.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/rt-crontool.in b/bin/rt-crontool.in
index 07e7a8b..40f1fcd 100755
--- a/bin/rt-crontool.in
+++ b/bin/rt-crontool.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/rt-mailgate.in b/bin/rt-mailgate.in
index 49c4fac..276200d 100755
--- a/bin/rt-mailgate.in
+++ b/bin/rt-mailgate.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/rt.in b/bin/rt.in
index 9731acf..3d16db2 100755
--- a/bin/rt.in
+++ b/bin/rt.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/standalone_httpd.in b/bin/standalone_httpd.in
index 8aebdb8..ecea7a4 100755
--- a/bin/standalone_httpd.in
+++ b/bin/standalone_httpd.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/bin/webmux.pl.in b/bin/webmux.pl.in
index b21d026..96dcd90 100755
--- a/bin/webmux.pl.in
+++ b/bin/webmux.pl.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/CustomFields/GroupRights.html b/html/Admin/CustomFields/GroupRights.html
index 86dd0d2..011722c 100644
--- a/html/Admin/CustomFields/GroupRights.html
+++ b/html/Admin/CustomFields/GroupRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/CustomFields/Modify.html b/html/Admin/CustomFields/Modify.html
index e3dfad7..213262b 100644
--- a/html/Admin/CustomFields/Modify.html
+++ b/html/Admin/CustomFields/Modify.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/CustomFields/Objects.html b/html/Admin/CustomFields/Objects.html
index d5a7c35..fe35eb3 100644
--- a/html/Admin/CustomFields/Objects.html
+++ b/html/Admin/CustomFields/Objects.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/CustomFields/UserRights.html b/html/Admin/CustomFields/UserRights.html
index 01158fd..41a9755 100644
--- a/html/Admin/CustomFields/UserRights.html
+++ b/html/Admin/CustomFields/UserRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/CustomFields/index.html b/html/Admin/CustomFields/index.html
index 49a56ea..be75aab 100644
--- a/html/Admin/CustomFields/index.html
+++ b/html/Admin/CustomFields/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/AddCustomFieldValue b/html/Admin/Elements/AddCustomFieldValue
index 82a4a6e..525d490 100755
--- a/html/Admin/Elements/AddCustomFieldValue
+++ b/html/Admin/Elements/AddCustomFieldValue
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/ConfigureMyRT b/html/Admin/Elements/ConfigureMyRT
index a111fa5..d82477f 100644
--- a/html/Admin/Elements/ConfigureMyRT
+++ b/html/Admin/Elements/ConfigureMyRT
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/CreateUserCalled b/html/Admin/Elements/CreateUserCalled
index b7ef0ba..0b29f4c 100755
--- a/html/Admin/Elements/CreateUserCalled
+++ b/html/Admin/Elements/CreateUserCalled
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/CustomFieldTabs b/html/Admin/Elements/CustomFieldTabs
index 0043eba..bde4ed3 100644
--- a/html/Admin/Elements/CustomFieldTabs
+++ b/html/Admin/Elements/CustomFieldTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditCustomField b/html/Admin/Elements/EditCustomField
index e19c00b..fb3dabb 100755
--- a/html/Admin/Elements/EditCustomField
+++ b/html/Admin/Elements/EditCustomField
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditCustomFieldValues b/html/Admin/Elements/EditCustomFieldValues
index 8592779..f26b667 100755
--- a/html/Admin/Elements/EditCustomFieldValues
+++ b/html/Admin/Elements/EditCustomFieldValues
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditCustomFields b/html/Admin/Elements/EditCustomFields
index 77eadbd..91adce7 100755
--- a/html/Admin/Elements/EditCustomFields
+++ b/html/Admin/Elements/EditCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditQueueWatchers b/html/Admin/Elements/EditQueueWatchers
index 1a1f18b..d5074a7 100755
--- a/html/Admin/Elements/EditQueueWatchers
+++ b/html/Admin/Elements/EditQueueWatchers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditScrip b/html/Admin/Elements/EditScrip
index f3ad18b..fe94d49 100755
--- a/html/Admin/Elements/EditScrip
+++ b/html/Admin/Elements/EditScrip
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditScrips b/html/Admin/Elements/EditScrips
index 40a526d..4b5a1b6 100755
--- a/html/Admin/Elements/EditScrips
+++ b/html/Admin/Elements/EditScrips
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditTemplates b/html/Admin/Elements/EditTemplates
index 9881299..5230e52 100755
--- a/html/Admin/Elements/EditTemplates
+++ b/html/Admin/Elements/EditTemplates
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/EditUserComments b/html/Admin/Elements/EditUserComments
index 40d8b19..b91e900 100755
--- a/html/Admin/Elements/EditUserComments
+++ b/html/Admin/Elements/EditUserComments
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/GlobalCustomFieldTabs b/html/Admin/Elements/GlobalCustomFieldTabs
index ba315b0..0870821 100755
--- a/html/Admin/Elements/GlobalCustomFieldTabs
+++ b/html/Admin/Elements/GlobalCustomFieldTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/GroupTabs b/html/Admin/Elements/GroupTabs
index ade02dc..88b5a49 100755
--- a/html/Admin/Elements/GroupTabs
+++ b/html/Admin/Elements/GroupTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/Header b/html/Admin/Elements/Header
index eeeab30..22f2aec 100755
--- a/html/Admin/Elements/Header
+++ b/html/Admin/Elements/Header
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/ListGlobalCustomFields b/html/Admin/Elements/ListGlobalCustomFields
index 55d7d32..16d4f91 100755
--- a/html/Admin/Elements/ListGlobalCustomFields
+++ b/html/Admin/Elements/ListGlobalCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/ListGlobalScrips b/html/Admin/Elements/ListGlobalScrips
index be819ec..7ff764d 100755
--- a/html/Admin/Elements/ListGlobalScrips
+++ b/html/Admin/Elements/ListGlobalScrips
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/ModifyTemplate b/html/Admin/Elements/ModifyTemplate
index 377379b..4199eee 100755
--- a/html/Admin/Elements/ModifyTemplate
+++ b/html/Admin/Elements/ModifyTemplate
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/ObjectCustomFields b/html/Admin/Elements/ObjectCustomFields
index d618878..f9c5328 100644
--- a/html/Admin/Elements/ObjectCustomFields
+++ b/html/Admin/Elements/ObjectCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/PickCustomFields b/html/Admin/Elements/PickCustomFields
index c3b5550..c17fb56 100644
--- a/html/Admin/Elements/PickCustomFields
+++ b/html/Admin/Elements/PickCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/PickObjects b/html/Admin/Elements/PickObjects
index b2da495..0b8c2c4 100644
--- a/html/Admin/Elements/PickObjects
+++ b/html/Admin/Elements/PickObjects
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/QueueRightsForUser b/html/Admin/Elements/QueueRightsForUser
index 52bb1ff..ccc479b 100755
--- a/html/Admin/Elements/QueueRightsForUser
+++ b/html/Admin/Elements/QueueRightsForUser
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/QueueTabs b/html/Admin/Elements/QueueTabs
index 379d152..d51c2b7 100755
--- a/html/Admin/Elements/QueueTabs
+++ b/html/Admin/Elements/QueueTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectCustomFieldLookupType b/html/Admin/Elements/SelectCustomFieldLookupType
index ebd3807..beaf93c 100644
--- a/html/Admin/Elements/SelectCustomFieldLookupType
+++ b/html/Admin/Elements/SelectCustomFieldLookupType
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectCustomFieldType b/html/Admin/Elements/SelectCustomFieldType
index 7dd4713..64b6b27 100755
--- a/html/Admin/Elements/SelectCustomFieldType
+++ b/html/Admin/Elements/SelectCustomFieldType
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectGroups b/html/Admin/Elements/SelectGroups
index c49f8ae..ee6d6da 100755
--- a/html/Admin/Elements/SelectGroups
+++ b/html/Admin/Elements/SelectGroups
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectModifyGroup b/html/Admin/Elements/SelectModifyGroup
index 7820e9f..9d9e80f 100755
--- a/html/Admin/Elements/SelectModifyGroup
+++ b/html/Admin/Elements/SelectModifyGroup
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectModifyQueue b/html/Admin/Elements/SelectModifyQueue
index af24e27..5a17155 100755
--- a/html/Admin/Elements/SelectModifyQueue
+++ b/html/Admin/Elements/SelectModifyQueue
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectModifyUser b/html/Admin/Elements/SelectModifyUser
index 73b67c8..c4e24f3 100755
--- a/html/Admin/Elements/SelectModifyUser
+++ b/html/Admin/Elements/SelectModifyUser
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectNewGroupMembers b/html/Admin/Elements/SelectNewGroupMembers
index 6235729..986aba9 100755
--- a/html/Admin/Elements/SelectNewGroupMembers
+++ b/html/Admin/Elements/SelectNewGroupMembers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectRights b/html/Admin/Elements/SelectRights
index a79c0f3..948dc90 100755
--- a/html/Admin/Elements/SelectRights
+++ b/html/Admin/Elements/SelectRights
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectScrip b/html/Admin/Elements/SelectScrip
index 2ce3c2e..bfe16b8 100755
--- a/html/Admin/Elements/SelectScrip
+++ b/html/Admin/Elements/SelectScrip
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectScripAction b/html/Admin/Elements/SelectScripAction
index 0bc8251..6699bb2 100755
--- a/html/Admin/Elements/SelectScripAction
+++ b/html/Admin/Elements/SelectScripAction
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectScripCondition b/html/Admin/Elements/SelectScripCondition
index 6d9201e..c935042 100755
--- a/html/Admin/Elements/SelectScripCondition
+++ b/html/Admin/Elements/SelectScripCondition
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectSingleOrMultiple b/html/Admin/Elements/SelectSingleOrMultiple
index 1b13a91..d765520 100755
--- a/html/Admin/Elements/SelectSingleOrMultiple
+++ b/html/Admin/Elements/SelectSingleOrMultiple
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectStage b/html/Admin/Elements/SelectStage
index f48f684..cf0d88b 100644
--- a/html/Admin/Elements/SelectStage
+++ b/html/Admin/Elements/SelectStage
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectTemplate b/html/Admin/Elements/SelectTemplate
index e42adfe..eb2228c 100755
--- a/html/Admin/Elements/SelectTemplate
+++ b/html/Admin/Elements/SelectTemplate
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SelectUsers b/html/Admin/Elements/SelectUsers
index 5426f42..7a5dec7 100755
--- a/html/Admin/Elements/SelectUsers
+++ b/html/Admin/Elements/SelectUsers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/SystemTabs b/html/Admin/Elements/SystemTabs
index afd611c..9f0e483 100755
--- a/html/Admin/Elements/SystemTabs
+++ b/html/Admin/Elements/SystemTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/Tabs b/html/Admin/Elements/Tabs
index 1fc54ef..fae44a8 100755
--- a/html/Admin/Elements/Tabs
+++ b/html/Admin/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/ToolTabs b/html/Admin/Elements/ToolTabs
index 94d19ca..6c5c0ce 100755
--- a/html/Admin/Elements/ToolTabs
+++ b/html/Admin/Elements/ToolTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Elements/UserTabs b/html/Admin/Elements/UserTabs
index c6050c1..ada0728 100755
--- a/html/Admin/Elements/UserTabs
+++ b/html/Admin/Elements/UserTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/CustomFields/Groups.html b/html/Admin/Global/CustomFields/Groups.html
index fe2545a..0dcb62e 100644
--- a/html/Admin/Global/CustomFields/Groups.html
+++ b/html/Admin/Global/CustomFields/Groups.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/CustomFields/Queue-Tickets.html b/html/Admin/Global/CustomFields/Queue-Tickets.html
index 8ef3083..27c0868 100755
--- a/html/Admin/Global/CustomFields/Queue-Tickets.html
+++ b/html/Admin/Global/CustomFields/Queue-Tickets.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/CustomFields/Queue-Transactions.html b/html/Admin/Global/CustomFields/Queue-Transactions.html
index 98aee5f..d261afb 100755
--- a/html/Admin/Global/CustomFields/Queue-Transactions.html
+++ b/html/Admin/Global/CustomFields/Queue-Transactions.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/CustomFields/Users.html b/html/Admin/Global/CustomFields/Users.html
index 11133a5..14daf28 100644
--- a/html/Admin/Global/CustomFields/Users.html
+++ b/html/Admin/Global/CustomFields/Users.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/CustomFields/index.html b/html/Admin/Global/CustomFields/index.html
index 3ef08f8..a4c6cd2 100644
--- a/html/Admin/Global/CustomFields/index.html
+++ b/html/Admin/Global/CustomFields/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/GroupRights.html b/html/Admin/Global/GroupRights.html
index 3101eae..1665c14 100755
--- a/html/Admin/Global/GroupRights.html
+++ b/html/Admin/Global/GroupRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/MyRT.html b/html/Admin/Global/MyRT.html
index 52793f4..f39a43d 100644
--- a/html/Admin/Global/MyRT.html
+++ b/html/Admin/Global/MyRT.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/Scrip.html b/html/Admin/Global/Scrip.html
index d4af7d5..61b6592 100755
--- a/html/Admin/Global/Scrip.html
+++ b/html/Admin/Global/Scrip.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/Scrips.html b/html/Admin/Global/Scrips.html
index 479d39b..e02852f 100755
--- a/html/Admin/Global/Scrips.html
+++ b/html/Admin/Global/Scrips.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/Template.html b/html/Admin/Global/Template.html
index b44a912..d6efcd3 100755
--- a/html/Admin/Global/Template.html
+++ b/html/Admin/Global/Template.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/Templates.html b/html/Admin/Global/Templates.html
index e953c02..c0d0dbd 100755
--- a/html/Admin/Global/Templates.html
+++ b/html/Admin/Global/Templates.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/UserRights.html b/html/Admin/Global/UserRights.html
index 6691e14..ec60066 100755
--- a/html/Admin/Global/UserRights.html
+++ b/html/Admin/Global/UserRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Global/index.html b/html/Admin/Global/index.html
index e84fc7f..1d5dccf 100755
--- a/html/Admin/Global/index.html
+++ b/html/Admin/Global/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Groups/CustomFields.html b/html/Admin/Groups/CustomFields.html
index 3e614f0..3406f9e 100644
--- a/html/Admin/Groups/CustomFields.html
+++ b/html/Admin/Groups/CustomFields.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Groups/GroupRights.html b/html/Admin/Groups/GroupRights.html
index bf430b7..45b0c34 100755
--- a/html/Admin/Groups/GroupRights.html
+++ b/html/Admin/Groups/GroupRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Groups/History.html b/html/Admin/Groups/History.html
index b811181..678098b 100644
--- a/html/Admin/Groups/History.html
+++ b/html/Admin/Groups/History.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Groups/Members.html b/html/Admin/Groups/Members.html
index c054b9b..9ceae11 100755
--- a/html/Admin/Groups/Members.html
+++ b/html/Admin/Groups/Members.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Groups/Modify.html b/html/Admin/Groups/Modify.html
index 5fa28b3..82f787c 100755
--- a/html/Admin/Groups/Modify.html
+++ b/html/Admin/Groups/Modify.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Groups/UserRights.html b/html/Admin/Groups/UserRights.html
index 7a5342a..3031afc 100755
--- a/html/Admin/Groups/UserRights.html
+++ b/html/Admin/Groups/UserRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Groups/index.html b/html/Admin/Groups/index.html
index 08aa214..9b4afb2 100755
--- a/html/Admin/Groups/index.html
+++ b/html/Admin/Groups/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/CustomField.html b/html/Admin/Queues/CustomField.html
index 7c53402..6793247 100755
--- a/html/Admin/Queues/CustomField.html
+++ b/html/Admin/Queues/CustomField.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/CustomFields.html b/html/Admin/Queues/CustomFields.html
index 679e654..830c41b 100755
--- a/html/Admin/Queues/CustomFields.html
+++ b/html/Admin/Queues/CustomFields.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/GroupRights.html b/html/Admin/Queues/GroupRights.html
index 9b4223b..b090e88 100755
--- a/html/Admin/Queues/GroupRights.html
+++ b/html/Admin/Queues/GroupRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/Modify.html b/html/Admin/Queues/Modify.html
index 7d231bd..954e277 100755
--- a/html/Admin/Queues/Modify.html
+++ b/html/Admin/Queues/Modify.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/People.html b/html/Admin/Queues/People.html
index a85fe44..88bee93 100755
--- a/html/Admin/Queues/People.html
+++ b/html/Admin/Queues/People.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/Scrip.html b/html/Admin/Queues/Scrip.html
index 9e12a35..8860f18 100755
--- a/html/Admin/Queues/Scrip.html
+++ b/html/Admin/Queues/Scrip.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/Scrips.html b/html/Admin/Queues/Scrips.html
index 1fc1fa0..2331ea4 100755
--- a/html/Admin/Queues/Scrips.html
+++ b/html/Admin/Queues/Scrips.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/Template.html b/html/Admin/Queues/Template.html
index b842f9e..20db26a 100755
--- a/html/Admin/Queues/Template.html
+++ b/html/Admin/Queues/Template.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/Templates.html b/html/Admin/Queues/Templates.html
index 2da737f..bd3f7b6 100755
--- a/html/Admin/Queues/Templates.html
+++ b/html/Admin/Queues/Templates.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/UserRights.html b/html/Admin/Queues/UserRights.html
index 2984774..bc01f12 100755
--- a/html/Admin/Queues/UserRights.html
+++ b/html/Admin/Queues/UserRights.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Queues/index.html b/html/Admin/Queues/index.html
index 09d1fb3..56c170c 100755
--- a/html/Admin/Queues/index.html
+++ b/html/Admin/Queues/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Tools/Configuration.html b/html/Admin/Tools/Configuration.html
index 3576b5c..e30c0a7 100644
--- a/html/Admin/Tools/Configuration.html
+++ b/html/Admin/Tools/Configuration.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Tools/index.html b/html/Admin/Tools/index.html
index 730fa7e..0a603eb 100644
--- a/html/Admin/Tools/index.html
+++ b/html/Admin/Tools/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Users/CustomFields.html b/html/Admin/Users/CustomFields.html
index 3943cbf..4de4a2f 100644
--- a/html/Admin/Users/CustomFields.html
+++ b/html/Admin/Users/CustomFields.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Users/History.html b/html/Admin/Users/History.html
index a4782d1..dc3ea99 100644
--- a/html/Admin/Users/History.html
+++ b/html/Admin/Users/History.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Users/Memberships.html b/html/Admin/Users/Memberships.html
index 4b4d1ca..dc5f44b 100644
--- a/html/Admin/Users/Memberships.html
+++ b/html/Admin/Users/Memberships.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Users/Modify.html b/html/Admin/Users/Modify.html
index 75a7696..a1d52b0 100755
--- a/html/Admin/Users/Modify.html
+++ b/html/Admin/Users/Modify.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Users/MyRT.html b/html/Admin/Users/MyRT.html
index a963b66..6ea7e76 100644
--- a/html/Admin/Users/MyRT.html
+++ b/html/Admin/Users/MyRT.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/Users/index.html b/html/Admin/Users/index.html
index 4d24b8f..6f124ab 100755
--- a/html/Admin/Users/index.html
+++ b/html/Admin/Users/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/autohandler b/html/Admin/autohandler
index 28437e9..2302afe 100644
--- a/html/Admin/autohandler
+++ b/html/Admin/autohandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Admin/index.html b/html/Admin/index.html
index ec6d0a2..a17bed9 100755
--- a/html/Admin/index.html
+++ b/html/Admin/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Approvals/Display.html b/html/Approvals/Display.html
index 3735df5..23f3b65 100755
--- a/html/Approvals/Display.html
+++ b/html/Approvals/Display.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Approvals/Elements/Approve b/html/Approvals/Elements/Approve
index 65d2276..d3fcf5b 100755
--- a/html/Approvals/Elements/Approve
+++ b/html/Approvals/Elements/Approve
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Approvals/Elements/PendingMyApproval b/html/Approvals/Elements/PendingMyApproval
index 741e638..bec122f 100755
--- a/html/Approvals/Elements/PendingMyApproval
+++ b/html/Approvals/Elements/PendingMyApproval
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Approvals/Elements/ShowDependency b/html/Approvals/Elements/ShowDependency
index 8be815c..730d2fa 100755
--- a/html/Approvals/Elements/ShowDependency
+++ b/html/Approvals/Elements/ShowDependency
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Approvals/Elements/Tabs b/html/Approvals/Elements/Tabs
index 3a4ba7c..5b28db7 100755
--- a/html/Approvals/Elements/Tabs
+++ b/html/Approvals/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Approvals/index.html b/html/Approvals/index.html
index 06f0539..bbf5a68 100755
--- a/html/Approvals/index.html
+++ b/html/Approvals/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Download/CustomFieldValue/dhandler b/html/Download/CustomFieldValue/dhandler
index e713807..56c145b 100644
--- a/html/Download/CustomFieldValue/dhandler
+++ b/html/Download/CustomFieldValue/dhandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Download/Tabular/dhandler b/html/Download/Tabular/dhandler
index 5cad794..6442ae1 100644
--- a/html/Download/Tabular/dhandler
+++ b/html/Download/Tabular/dhandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/BevelBoxRaisedEnd b/html/Elements/BevelBoxRaisedEnd
index be60dfb..03e1042 100755
--- a/html/Elements/BevelBoxRaisedEnd
+++ b/html/Elements/BevelBoxRaisedEnd
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/BevelBoxRaisedStart b/html/Elements/BevelBoxRaisedStart
index 6468187..9f52621 100755
--- a/html/Elements/BevelBoxRaisedStart
+++ b/html/Elements/BevelBoxRaisedStart
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Callback b/html/Elements/Callback
index 04864c6..33a0c3a 100755
--- a/html/Elements/Callback
+++ b/html/Elements/Callback
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Checkbox b/html/Elements/Checkbox
index e1d7f3d..47b4fa9 100755
--- a/html/Elements/Checkbox
+++ b/html/Elements/Checkbox
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/CollectionAsTable/Header b/html/Elements/CollectionAsTable/Header
index cdcd2fd..01a3818 100644
--- a/html/Elements/CollectionAsTable/Header
+++ b/html/Elements/CollectionAsTable/Header
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/CollectionAsTable/ParseFormat b/html/Elements/CollectionAsTable/ParseFormat
index a85da31..aceb4eb 100644
--- a/html/Elements/CollectionAsTable/ParseFormat
+++ b/html/Elements/CollectionAsTable/ParseFormat
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/CollectionAsTable/Row b/html/Elements/CollectionAsTable/Row
index bb90321..502f259 100644
--- a/html/Elements/CollectionAsTable/Row
+++ b/html/Elements/CollectionAsTable/Row
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/CreateTicket b/html/Elements/CreateTicket
index 6fb4972..68b0a0b 100755
--- a/html/Elements/CreateTicket
+++ b/html/Elements/CreateTicket
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomField b/html/Elements/EditCustomField
index 85641ef..abbed2d 100644
--- a/html/Elements/EditCustomField
+++ b/html/Elements/EditCustomField
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomFieldBinary b/html/Elements/EditCustomFieldBinary
index 81368d7..4b68c6d 100644
--- a/html/Elements/EditCustomFieldBinary
+++ b/html/Elements/EditCustomFieldBinary
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomFieldCombobox b/html/Elements/EditCustomFieldCombobox
index 37a388c..4f5ead8 100644
--- a/html/Elements/EditCustomFieldCombobox
+++ b/html/Elements/EditCustomFieldCombobox
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomFieldFreeform b/html/Elements/EditCustomFieldFreeform
index 57073b0..418d8e1 100644
--- a/html/Elements/EditCustomFieldFreeform
+++ b/html/Elements/EditCustomFieldFreeform
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomFieldImage b/html/Elements/EditCustomFieldImage
index c9fd8dd..ade7561 100644
--- a/html/Elements/EditCustomFieldImage
+++ b/html/Elements/EditCustomFieldImage
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomFieldSelect b/html/Elements/EditCustomFieldSelect
index 6df5576..3d7d20c 100644
--- a/html/Elements/EditCustomFieldSelect
+++ b/html/Elements/EditCustomFieldSelect
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomFieldText b/html/Elements/EditCustomFieldText
index b4892ec..32fd57e 100644
--- a/html/Elements/EditCustomFieldText
+++ b/html/Elements/EditCustomFieldText
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditCustomFieldWikitext b/html/Elements/EditCustomFieldWikitext
index b4892ec..32fd57e 100644
--- a/html/Elements/EditCustomFieldWikitext
+++ b/html/Elements/EditCustomFieldWikitext
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EditLinks b/html/Elements/EditLinks
index 8fd1d62..f3d6003 100755
--- a/html/Elements/EditLinks
+++ b/html/Elements/EditLinks
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/EmailInput b/html/Elements/EmailInput
index c1b2755..18eec6d 100644
--- a/html/Elements/EmailInput
+++ b/html/Elements/EmailInput
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Error b/html/Elements/Error
index 666017f..0ea7fcf 100755
--- a/html/Elements/Error
+++ b/html/Elements/Error
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Footer b/html/Elements/Footer
index c3d7662..c9ae3bd 100755
--- a/html/Elements/Footer
+++ b/html/Elements/Footer
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/GotoTicket b/html/Elements/GotoTicket
index 55dacda..df618d8 100755
--- a/html/Elements/GotoTicket
+++ b/html/Elements/GotoTicket
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Header b/html/Elements/Header
index 02450b1..105467e 100755
--- a/html/Elements/Header
+++ b/html/Elements/Header
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ListActions b/html/Elements/ListActions
index 0d9788b..97bc1e1 100755
--- a/html/Elements/ListActions
+++ b/html/Elements/ListActions
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Login b/html/Elements/Login
index 8cad96f..bfa4a90 100755
--- a/html/Elements/Login
+++ b/html/Elements/Login
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Logo b/html/Elements/Logo
index 9db7665..428f546 100644
--- a/html/Elements/Logo
+++ b/html/Elements/Logo
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Menu b/html/Elements/Menu
index 48fceeb..dc1a93d 100755
--- a/html/Elements/Menu
+++ b/html/Elements/Menu
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/MessageBox b/html/Elements/MessageBox
index ac90349..5ada10e 100755
--- a/html/Elements/MessageBox
+++ b/html/Elements/MessageBox
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/MyAdminQueues b/html/Elements/MyAdminQueues
index ddfc22c..aad3d5e 100644
--- a/html/Elements/MyAdminQueues
+++ b/html/Elements/MyAdminQueues
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/MyRT b/html/Elements/MyRT
index f98a7c2..250424a 100644
--- a/html/Elements/MyRT
+++ b/html/Elements/MyRT
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/MyReminders b/html/Elements/MyReminders
index 6863225..ddafda9 100755
--- a/html/Elements/MyReminders
+++ b/html/Elements/MyReminders
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/MyRequests b/html/Elements/MyRequests
index 9a6d0a3..f2cb7f2 100755
--- a/html/Elements/MyRequests
+++ b/html/Elements/MyRequests
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/MySupportQueues b/html/Elements/MySupportQueues
index 6dec1e1..a803f9b 100644
--- a/html/Elements/MySupportQueues
+++ b/html/Elements/MySupportQueues
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/MyTickets b/html/Elements/MyTickets
index 771abbd..b9bbae6 100755
--- a/html/Elements/MyTickets
+++ b/html/Elements/MyTickets
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/PageLayout b/html/Elements/PageLayout
index 6897ede..7fa9c07 100755
--- a/html/Elements/PageLayout
+++ b/html/Elements/PageLayout
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/QueryString b/html/Elements/QueryString
index bade07f..bc11715 100644
--- a/html/Elements/QueryString
+++ b/html/Elements/QueryString
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/QueueSummary b/html/Elements/QueueSummary
index 8ad371a..a89b601 100644
--- a/html/Elements/QueueSummary
+++ b/html/Elements/QueueSummary
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/QuickCreate b/html/Elements/QuickCreate
index 5669a45..f49a71f 100644
--- a/html/Elements/QuickCreate
+++ b/html/Elements/QuickCreate
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Quicksearch b/html/Elements/Quicksearch
index eb21b3b..5092051 100755
--- a/html/Elements/Quicksearch
+++ b/html/Elements/Quicksearch
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/RT__Ticket/ColumnMap b/html/Elements/RT__Ticket/ColumnMap
index ae96226..1c1bf12 100644
--- a/html/Elements/RT__Ticket/ColumnMap
+++ b/html/Elements/RT__Ticket/ColumnMap
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Refresh b/html/Elements/Refresh
index 91ad042..da217a1 100755
--- a/html/Elements/Refresh
+++ b/html/Elements/Refresh
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/RefreshHomepage b/html/Elements/RefreshHomepage
index daed6b7..1965ce7 100644
--- a/html/Elements/RefreshHomepage
+++ b/html/Elements/RefreshHomepage
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ScrubHTML b/html/Elements/ScrubHTML
index 10d5f90..c557ce7 100644
--- a/html/Elements/ScrubHTML
+++ b/html/Elements/ScrubHTML
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Section b/html/Elements/Section
index cbccde1..2c97000 100755
--- a/html/Elements/Section
+++ b/html/Elements/Section
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectAttachmentField b/html/Elements/SelectAttachmentField
index d0d080e..76ff356 100755
--- a/html/Elements/SelectAttachmentField
+++ b/html/Elements/SelectAttachmentField
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectBoolean b/html/Elements/SelectBoolean
index 77d27a2..eec46f9 100755
--- a/html/Elements/SelectBoolean
+++ b/html/Elements/SelectBoolean
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectCustomFieldOperator b/html/Elements/SelectCustomFieldOperator
index ba19095..ece1188 100755
--- a/html/Elements/SelectCustomFieldOperator
+++ b/html/Elements/SelectCustomFieldOperator
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectCustomFieldValue b/html/Elements/SelectCustomFieldValue
index 73897c0..c8c9b9a 100755
--- a/html/Elements/SelectCustomFieldValue
+++ b/html/Elements/SelectCustomFieldValue
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectDate b/html/Elements/SelectDate
index 5767074..3593ab5 100755
--- a/html/Elements/SelectDate
+++ b/html/Elements/SelectDate
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectDateRelation b/html/Elements/SelectDateRelation
index 056ad48..13971c4 100755
--- a/html/Elements/SelectDateRelation
+++ b/html/Elements/SelectDateRelation
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectDateType b/html/Elements/SelectDateType
index ff01543..d831783 100755
--- a/html/Elements/SelectDateType
+++ b/html/Elements/SelectDateType
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectEqualityOperator b/html/Elements/SelectEqualityOperator
index 85c1031..597e593 100755
--- a/html/Elements/SelectEqualityOperator
+++ b/html/Elements/SelectEqualityOperator
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectGroups b/html/Elements/SelectGroups
index 8b6e485..a40f439 100755
--- a/html/Elements/SelectGroups
+++ b/html/Elements/SelectGroups
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectLang b/html/Elements/SelectLang
index 490307f..01c2fcb 100755
--- a/html/Elements/SelectLang
+++ b/html/Elements/SelectLang
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectLinkType b/html/Elements/SelectLinkType
index 3d2c27c..7c368d9 100755
--- a/html/Elements/SelectLinkType
+++ b/html/Elements/SelectLinkType
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectMatch b/html/Elements/SelectMatch
index 828d304..86999f0 100755
--- a/html/Elements/SelectMatch
+++ b/html/Elements/SelectMatch
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectNewTicketQueue b/html/Elements/SelectNewTicketQueue
index 528a37d..c937967 100755
--- a/html/Elements/SelectNewTicketQueue
+++ b/html/Elements/SelectNewTicketQueue
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectOwner b/html/Elements/SelectOwner
index dbe2f8c..2170ce4 100755
--- a/html/Elements/SelectOwner
+++ b/html/Elements/SelectOwner
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectQueue b/html/Elements/SelectQueue
index 21d379d..2a4c29b 100755
--- a/html/Elements/SelectQueue
+++ b/html/Elements/SelectQueue
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectResultsPerPage b/html/Elements/SelectResultsPerPage
index 4b1fa7f..a9c6b92 100755
--- a/html/Elements/SelectResultsPerPage
+++ b/html/Elements/SelectResultsPerPage
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectSortOrder b/html/Elements/SelectSortOrder
index 4d2423a..61f51bb 100755
--- a/html/Elements/SelectSortOrder
+++ b/html/Elements/SelectSortOrder
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectStatus b/html/Elements/SelectStatus
index 9250e73..7b3fb61 100755
--- a/html/Elements/SelectStatus
+++ b/html/Elements/SelectStatus
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectTicketSortBy b/html/Elements/SelectTicketSortBy
index 1ae7f83..334bf90 100755
--- a/html/Elements/SelectTicketSortBy
+++ b/html/Elements/SelectTicketSortBy
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectTicketTypes b/html/Elements/SelectTicketTypes
index dba61e8..4dc438d 100755
--- a/html/Elements/SelectTicketTypes
+++ b/html/Elements/SelectTicketTypes
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectTimeUnits b/html/Elements/SelectTimeUnits
index c218d8a..49cc8d6 100755
--- a/html/Elements/SelectTimeUnits
+++ b/html/Elements/SelectTimeUnits
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectUsers b/html/Elements/SelectUsers
index 8535cab..da32c4e 100755
--- a/html/Elements/SelectUsers
+++ b/html/Elements/SelectUsers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SelectWatcherType b/html/Elements/SelectWatcherType
index 8f15276..a774f80 100755
--- a/html/Elements/SelectWatcherType
+++ b/html/Elements/SelectWatcherType
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SetupSessionCookie b/html/Elements/SetupSessionCookie
index 00f97ce..ab9f3de 100755
--- a/html/Elements/SetupSessionCookie
+++ b/html/Elements/SetupSessionCookie
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowCustomFieldBinary b/html/Elements/ShowCustomFieldBinary
index e8fb2e7..9c545e2 100644
--- a/html/Elements/ShowCustomFieldBinary
+++ b/html/Elements/ShowCustomFieldBinary
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowCustomFieldImage b/html/Elements/ShowCustomFieldImage
index ee93f54..e0bbd7b 100644
--- a/html/Elements/ShowCustomFieldImage
+++ b/html/Elements/ShowCustomFieldImage
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowCustomFieldWikitext b/html/Elements/ShowCustomFieldWikitext
index c4393ae..05f94e9 100644
--- a/html/Elements/ShowCustomFieldWikitext
+++ b/html/Elements/ShowCustomFieldWikitext
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowCustomFields b/html/Elements/ShowCustomFields
index cf6127e..03181ee 100644
--- a/html/Elements/ShowCustomFields
+++ b/html/Elements/ShowCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowLink b/html/Elements/ShowLink
index 1b615c0..2835c8a 100644
--- a/html/Elements/ShowLink
+++ b/html/Elements/ShowLink
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowLinks b/html/Elements/ShowLinks
index 8160c85..b4a19f1 100755
--- a/html/Elements/ShowLinks
+++ b/html/Elements/ShowLinks
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowMemberships b/html/Elements/ShowMemberships
index a0c83ad..dd0bc90 100644
--- a/html/Elements/ShowMemberships
+++ b/html/Elements/ShowMemberships
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ShowSearch b/html/Elements/ShowSearch
index e940121..697f01f 100644
--- a/html/Elements/ShowSearch
+++ b/html/Elements/ShowSearch
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/SimpleSearch b/html/Elements/SimpleSearch
index 2876a29..1c31891 100755
--- a/html/Elements/SimpleSearch
+++ b/html/Elements/SimpleSearch
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Submit b/html/Elements/Submit
index e2dd377..a752ea9 100755
--- a/html/Elements/Submit
+++ b/html/Elements/Submit
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/Tabs b/html/Elements/Tabs
index 3b0f3da..0034671 100755
--- a/html/Elements/Tabs
+++ b/html/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/TicketList b/html/Elements/TicketList
index 81e265d..f1aeb2e 100644
--- a/html/Elements/TicketList
+++ b/html/Elements/TicketList
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/TitleBox b/html/Elements/TitleBox
index 6597323..e7520eb 100644
--- a/html/Elements/TitleBox
+++ b/html/Elements/TitleBox
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/TitleBoxEnd b/html/Elements/TitleBoxEnd
index 42626ff..6aab4da 100644
--- a/html/Elements/TitleBoxEnd
+++ b/html/Elements/TitleBoxEnd
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/TitleBoxStart b/html/Elements/TitleBoxStart
index da04f8b..1e50c7c 100644
--- a/html/Elements/TitleBoxStart
+++ b/html/Elements/TitleBoxStart
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Elements/ValidateCustomFields b/html/Elements/ValidateCustomFields
index c043d40..7aa549d 100644
--- a/html/Elements/ValidateCustomFields
+++ b/html/Elements/ValidateCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Helpers/CalPopup.html b/html/Helpers/CalPopup.html
index dc5acf7..3e91646 100644
--- a/html/Helpers/CalPopup.html
+++ b/html/Helpers/CalPopup.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Helpers/EmailAutocomplete b/html/Helpers/EmailAutocomplete
index c1b2755..18eec6d 100644
--- a/html/Helpers/EmailAutocomplete
+++ b/html/Helpers/EmailAutocomplete
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/Logout.html b/html/NoAuth/Logout.html
index 9af4a93..8a2782f 100755
--- a/html/NoAuth/Logout.html
+++ b/html/NoAuth/Logout.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/Reminder.html b/html/NoAuth/Reminder.html
index 18bde44..3a37549 100755
--- a/html/NoAuth/Reminder.html
+++ b/html/NoAuth/Reminder.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/body.css b/html/NoAuth/css/3.4-compat/body.css
index 81442f6..5dd99f3 100644
--- a/html/NoAuth/css/3.4-compat/body.css
+++ b/html/NoAuth/css/3.4-compat/body.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/footer.css b/html/NoAuth/css/3.4-compat/footer.css
index 326ff64..d90d139 100644
--- a/html/NoAuth/css/3.4-compat/footer.css
+++ b/html/NoAuth/css/3.4-compat/footer.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/forms.css b/html/NoAuth/css/3.4-compat/forms.css
index 539952b..237acbc 100644
--- a/html/NoAuth/css/3.4-compat/forms.css
+++ b/html/NoAuth/css/3.4-compat/forms.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/header.css b/html/NoAuth/css/3.4-compat/header.css
index 30ce6f1..df86050 100644
--- a/html/NoAuth/css/3.4-compat/header.css
+++ b/html/NoAuth/css/3.4-compat/header.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/login.css b/html/NoAuth/css/3.4-compat/login.css
index 7b8fad6..09475f4 100644
--- a/html/NoAuth/css/3.4-compat/login.css
+++ b/html/NoAuth/css/3.4-compat/login.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/main.css b/html/NoAuth/css/3.4-compat/main.css
index b376b3c..03252b6 100644
--- a/html/NoAuth/css/3.4-compat/main.css
+++ b/html/NoAuth/css/3.4-compat/main.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/misc.css b/html/NoAuth/css/3.4-compat/misc.css
index c75b4d8..56f7cb4 100644
--- a/html/NoAuth/css/3.4-compat/misc.css
+++ b/html/NoAuth/css/3.4-compat/misc.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/nav.css b/html/NoAuth/css/3.4-compat/nav.css
index b170c29..443ac20 100644
--- a/html/NoAuth/css/3.4-compat/nav.css
+++ b/html/NoAuth/css/3.4-compat/nav.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/quickbar.css b/html/NoAuth/css/3.4-compat/quickbar.css
index a7b23d5..909d05c 100644
--- a/html/NoAuth/css/3.4-compat/quickbar.css
+++ b/html/NoAuth/css/3.4-compat/quickbar.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/ticket.css b/html/NoAuth/css/3.4-compat/ticket.css
index b51c701..1d76f33 100644
--- a/html/NoAuth/css/3.4-compat/ticket.css
+++ b/html/NoAuth/css/3.4-compat/ticket.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/titlebox.css b/html/NoAuth/css/3.4-compat/titlebox.css
index d48704e..4923502 100644
--- a/html/NoAuth/css/3.4-compat/titlebox.css
+++ b/html/NoAuth/css/3.4-compat/titlebox.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.4-compat/transactions.css b/html/NoAuth/css/3.4-compat/transactions.css
index 1331bfa..2853656 100644
--- a/html/NoAuth/css/3.4-compat/transactions.css
+++ b/html/NoAuth/css/3.4-compat/transactions.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/approvals.css b/html/NoAuth/css/3.5-default/approvals.css
index 60629cd..2dcd7cf 100644
--- a/html/NoAuth/css/3.5-default/approvals.css
+++ b/html/NoAuth/css/3.5-default/approvals.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/body.css b/html/NoAuth/css/3.5-default/body.css
index dc02d01..59300d1 100755
--- a/html/NoAuth/css/3.5-default/body.css
+++ b/html/NoAuth/css/3.5-default/body.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/footer.css b/html/NoAuth/css/3.5-default/footer.css
index fd8c8f3..8300100 100644
--- a/html/NoAuth/css/3.5-default/footer.css
+++ b/html/NoAuth/css/3.5-default/footer.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/forms.css b/html/NoAuth/css/3.5-default/forms.css
index 3b7f2d6..21518c0 100755
--- a/html/NoAuth/css/3.5-default/forms.css
+++ b/html/NoAuth/css/3.5-default/forms.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/header.css b/html/NoAuth/css/3.5-default/header.css
index 4e0ce6d..be1cb16 100644
--- a/html/NoAuth/css/3.5-default/header.css
+++ b/html/NoAuth/css/3.5-default/header.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/login.css b/html/NoAuth/css/3.5-default/login.css
index 5aec376..8e9e415 100644
--- a/html/NoAuth/css/3.5-default/login.css
+++ b/html/NoAuth/css/3.5-default/login.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/logo.css b/html/NoAuth/css/3.5-default/logo.css
index d2a1737..89dbde7 100644
--- a/html/NoAuth/css/3.5-default/logo.css
+++ b/html/NoAuth/css/3.5-default/logo.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/main.css b/html/NoAuth/css/3.5-default/main.css
index 3a5fdfb..dd022f5 100644
--- a/html/NoAuth/css/3.5-default/main.css
+++ b/html/NoAuth/css/3.5-default/main.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/misc.css b/html/NoAuth/css/3.5-default/misc.css
index 038e65d..4ed5e8c 100755
--- a/html/NoAuth/css/3.5-default/misc.css
+++ b/html/NoAuth/css/3.5-default/misc.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/nav.css b/html/NoAuth/css/3.5-default/nav.css
index d63628d..43c0c4f 100644
--- a/html/NoAuth/css/3.5-default/nav.css
+++ b/html/NoAuth/css/3.5-default/nav.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/quickbar.css b/html/NoAuth/css/3.5-default/quickbar.css
index 3637695..3668549 100644
--- a/html/NoAuth/css/3.5-default/quickbar.css
+++ b/html/NoAuth/css/3.5-default/quickbar.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/ticket.css b/html/NoAuth/css/3.5-default/ticket.css
index 7fa0e9e..d508f2d 100644
--- a/html/NoAuth/css/3.5-default/ticket.css
+++ b/html/NoAuth/css/3.5-default/ticket.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/titlebox.css b/html/NoAuth/css/3.5-default/titlebox.css
index 3bd4e97..f9e528b 100644
--- a/html/NoAuth/css/3.5-default/titlebox.css
+++ b/html/NoAuth/css/3.5-default/titlebox.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/3.5-default/transactions.css b/html/NoAuth/css/3.5-default/transactions.css
index fdf8ea8..13834a8 100755
--- a/html/NoAuth/css/3.5-default/transactions.css
+++ b/html/NoAuth/css/3.5-default/transactions.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/autohandler b/html/NoAuth/css/autohandler
index a4eda4e..41586b9 100644
--- a/html/NoAuth/css/autohandler
+++ b/html/NoAuth/css/autohandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/dhandler b/html/NoAuth/css/dhandler
index 6f1f5e9..ee0a080 100644
--- a/html/NoAuth/css/dhandler
+++ b/html/NoAuth/css/dhandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/css/print.css b/html/NoAuth/css/print.css
index 80a0c78..df2b579 100644
--- a/html/NoAuth/css/print.css
+++ b/html/NoAuth/css/print.css
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/ahah.js b/html/NoAuth/js/ahah.js
index e54a2c6..424b565 100644
--- a/html/NoAuth/js/ahah.js
+++ b/html/NoAuth/js/ahah.js
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/autohandler b/html/NoAuth/js/autohandler
index 8fab38d..fd3805d 100644
--- a/html/NoAuth/js/autohandler
+++ b/html/NoAuth/js/autohandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/cascaded.js b/html/NoAuth/js/cascaded.js
index 34b99b5..c16830a 100644
--- a/html/NoAuth/js/cascaded.js
+++ b/html/NoAuth/js/cascaded.js
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/class.js b/html/NoAuth/js/class.js
index ee8e30c..497d282 100644
--- a/html/NoAuth/js/class.js
+++ b/html/NoAuth/js/class.js
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/combobox.js b/html/NoAuth/js/combobox.js
index 443dd9d..ac57d11 100644
--- a/html/NoAuth/js/combobox.js
+++ b/html/NoAuth/js/combobox.js
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/list.js b/html/NoAuth/js/list.js
index 85a2ec2..fe77981 100644
--- a/html/NoAuth/js/list.js
+++ b/html/NoAuth/js/list.js
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/titlebox-state.js b/html/NoAuth/js/titlebox-state.js
index 024cfd5..db0a406 100644
--- a/html/NoAuth/js/titlebox-state.js
+++ b/html/NoAuth/js/titlebox-state.js
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/NoAuth/js/util.js b/html/NoAuth/js/util.js
index eac77e1..c508b34 100644
--- a/html/NoAuth/js/util.js
+++ b/html/NoAuth/js/util.js
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Prefs/Elements/Tabs b/html/Prefs/Elements/Tabs
index 8765e74..09ade45 100644
--- a/html/Prefs/Elements/Tabs
+++ b/html/Prefs/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Prefs/MyRT.html b/html/Prefs/MyRT.html
index e69a0cf..6c71637 100644
--- a/html/Prefs/MyRT.html
+++ b/html/Prefs/MyRT.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Prefs/Quicksearch.html b/html/Prefs/Quicksearch.html
index 8372c03..8a0b6f8 100644
--- a/html/Prefs/Quicksearch.html
+++ b/html/Prefs/Quicksearch.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Prefs/Search.html b/html/Prefs/Search.html
index 673a074..c1dd883 100644
--- a/html/Prefs/Search.html
+++ b/html/Prefs/Search.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Prefs/SearchOptions.html b/html/Prefs/SearchOptions.html
index 655d6ec..73f375a 100644
--- a/html/Prefs/SearchOptions.html
+++ b/html/Prefs/SearchOptions.html
@@ -3,7 +3,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/queue/default b/html/REST/1.0/Forms/queue/default
index ca9cf69..cb0dcb7 100755
--- a/html/REST/1.0/Forms/queue/default
+++ b/html/REST/1.0/Forms/queue/default
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/queue/ns b/html/REST/1.0/Forms/queue/ns
index 0cb594b..e8dd247 100755
--- a/html/REST/1.0/Forms/queue/ns
+++ b/html/REST/1.0/Forms/queue/ns
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/ticket/attachments b/html/REST/1.0/Forms/ticket/attachments
index f1d209d..547c30c 100755
--- a/html/REST/1.0/Forms/ticket/attachments
+++ b/html/REST/1.0/Forms/ticket/attachments
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/ticket/comment b/html/REST/1.0/Forms/ticket/comment
index dd033d1..2134f76 100755
--- a/html/REST/1.0/Forms/ticket/comment
+++ b/html/REST/1.0/Forms/ticket/comment
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/ticket/default b/html/REST/1.0/Forms/ticket/default
index 918f360..6130eaf 100755
--- a/html/REST/1.0/Forms/ticket/default
+++ b/html/REST/1.0/Forms/ticket/default
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/ticket/history b/html/REST/1.0/Forms/ticket/history
index b5ae187..3f78edc 100755
--- a/html/REST/1.0/Forms/ticket/history
+++ b/html/REST/1.0/Forms/ticket/history
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/ticket/links b/html/REST/1.0/Forms/ticket/links
index 12e1b1f..b4b6c55 100755
--- a/html/REST/1.0/Forms/ticket/links
+++ b/html/REST/1.0/Forms/ticket/links
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/ticket/merge b/html/REST/1.0/Forms/ticket/merge
index 3921da7..7aa0443 100755
--- a/html/REST/1.0/Forms/ticket/merge
+++ b/html/REST/1.0/Forms/ticket/merge
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/ticket/take b/html/REST/1.0/Forms/ticket/take
index f8d1457..d1c8ed5 100755
--- a/html/REST/1.0/Forms/ticket/take
+++ b/html/REST/1.0/Forms/ticket/take
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/transaction/default b/html/REST/1.0/Forms/transaction/default
index 053f65e..689ac43 100644
--- a/html/REST/1.0/Forms/transaction/default
+++ b/html/REST/1.0/Forms/transaction/default
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/user/default b/html/REST/1.0/Forms/user/default
index dd383f9..8fbc34b 100755
--- a/html/REST/1.0/Forms/user/default
+++ b/html/REST/1.0/Forms/user/default
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/Forms/user/ns b/html/REST/1.0/Forms/user/ns
index 4bbcbd7..ee99e1b 100755
--- a/html/REST/1.0/Forms/user/ns
+++ b/html/REST/1.0/Forms/user/ns
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/NoAuth/mail-gateway b/html/REST/1.0/NoAuth/mail-gateway
index 25dc5da..39b0aef 100755
--- a/html/REST/1.0/NoAuth/mail-gateway
+++ b/html/REST/1.0/NoAuth/mail-gateway
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/autohandler b/html/REST/1.0/autohandler
index 1b4b070..f36f7f4 100755
--- a/html/REST/1.0/autohandler
+++ b/html/REST/1.0/autohandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/dhandler b/html/REST/1.0/dhandler
index bb6b262..cae1ff7 100755
--- a/html/REST/1.0/dhandler
+++ b/html/REST/1.0/dhandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/logout b/html/REST/1.0/logout
index bb5359e..baef4e0 100755
--- a/html/REST/1.0/logout
+++ b/html/REST/1.0/logout
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/search/dhandler b/html/REST/1.0/search/dhandler
index 1a43bf8..f8b750b 100755
--- a/html/REST/1.0/search/dhandler
+++ b/html/REST/1.0/search/dhandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/search/ticket b/html/REST/1.0/search/ticket
index bd3d63f..dc9ae38 100755
--- a/html/REST/1.0/search/ticket
+++ b/html/REST/1.0/search/ticket
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/ticket/comment b/html/REST/1.0/ticket/comment
index 72a9b83..21ee43c 100755
--- a/html/REST/1.0/ticket/comment
+++ b/html/REST/1.0/ticket/comment
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/ticket/link b/html/REST/1.0/ticket/link
index 7b06546..e31f3c1 100755
--- a/html/REST/1.0/ticket/link
+++ b/html/REST/1.0/ticket/link
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/REST/1.0/ticket/merge b/html/REST/1.0/ticket/merge
index 18d671b..6d72681 100755
--- a/html/REST/1.0/ticket/merge
+++ b/html/REST/1.0/ticket/merge
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Build.html b/html/Search/Build.html
index fa84f42..4af34ca 100644
--- a/html/Search/Build.html
+++ b/html/Search/Build.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Bulk.html b/html/Search/Bulk.html
index 69ffba8..85e3308 100755
--- a/html/Search/Bulk.html
+++ b/html/Search/Bulk.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Chart b/html/Search/Chart
index 26249a7..a6cb4ca 100644
--- a/html/Search/Chart
+++ b/html/Search/Chart
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Chart.html b/html/Search/Chart.html
index 9fca23b..1e343c7 100644
--- a/html/Search/Chart.html
+++ b/html/Search/Chart.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Edit.html b/html/Search/Edit.html
index b7708f7..7b2b977 100755
--- a/html/Search/Edit.html
+++ b/html/Search/Edit.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/BuildFormatString b/html/Search/Elements/BuildFormatString
index 0526333..9b00f87 100644
--- a/html/Search/Elements/BuildFormatString
+++ b/html/Search/Elements/BuildFormatString
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/Chart b/html/Search/Elements/Chart
index 37a4da2..4fc56ce 100644
--- a/html/Search/Elements/Chart
+++ b/html/Search/Elements/Chart
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/DisplayOptions b/html/Search/Elements/DisplayOptions
index 1ddbafd..a6322ed 100644
--- a/html/Search/Elements/DisplayOptions
+++ b/html/Search/Elements/DisplayOptions
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/EditFormat b/html/Search/Elements/EditFormat
index 31cc215..1d89078 100644
--- a/html/Search/Elements/EditFormat
+++ b/html/Search/Elements/EditFormat
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/EditQuery b/html/Search/Elements/EditQuery
index 3b08c8b..31e96e7 100644
--- a/html/Search/Elements/EditQuery
+++ b/html/Search/Elements/EditQuery
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/EditSearches b/html/Search/Elements/EditSearches
index a22dc4b..546248f 100644
--- a/html/Search/Elements/EditSearches
+++ b/html/Search/Elements/EditSearches
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/NewListActions b/html/Search/Elements/NewListActions
index 33fc360..a901ce2 100644
--- a/html/Search/Elements/NewListActions
+++ b/html/Search/Elements/NewListActions
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/PickBasics b/html/Search/Elements/PickBasics
index b91fde3..ea7eb1c 100644
--- a/html/Search/Elements/PickBasics
+++ b/html/Search/Elements/PickBasics
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/PickCFs b/html/Search/Elements/PickCFs
index 0a50fad..8cc8d9c 100644
--- a/html/Search/Elements/PickCFs
+++ b/html/Search/Elements/PickCFs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/PickCriteria b/html/Search/Elements/PickCriteria
index 153715c..345e172 100644
--- a/html/Search/Elements/PickCriteria
+++ b/html/Search/Elements/PickCriteria
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SearchPrivacy b/html/Search/Elements/SearchPrivacy
index e439485..e8fc77a 100644
--- a/html/Search/Elements/SearchPrivacy
+++ b/html/Search/Elements/SearchPrivacy
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SearchesForObject b/html/Search/Elements/SearchesForObject
index 1a7ad32..1f8e487 100644
--- a/html/Search/Elements/SearchesForObject
+++ b/html/Search/Elements/SearchesForObject
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectAndOr b/html/Search/Elements/SelectAndOr
index 0a5ccc5..a7c3087 100644
--- a/html/Search/Elements/SelectAndOr
+++ b/html/Search/Elements/SelectAndOr
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectChartType b/html/Search/Elements/SelectChartType
index cbbf5e0..47d182d 100644
--- a/html/Search/Elements/SelectChartType
+++ b/html/Search/Elements/SelectChartType
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectGroup b/html/Search/Elements/SelectGroup
index 60c0bbb..b9dc066 100644
--- a/html/Search/Elements/SelectGroup
+++ b/html/Search/Elements/SelectGroup
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectGroupBy b/html/Search/Elements/SelectGroupBy
index e7ab934..12d04c4 100644
--- a/html/Search/Elements/SelectGroupBy
+++ b/html/Search/Elements/SelectGroupBy
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectLinks b/html/Search/Elements/SelectLinks
index 54505a4..2e7e77e 100644
--- a/html/Search/Elements/SelectLinks
+++ b/html/Search/Elements/SelectLinks
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectPersonType b/html/Search/Elements/SelectPersonType
index e2a9a21..5a950e5 100644
--- a/html/Search/Elements/SelectPersonType
+++ b/html/Search/Elements/SelectPersonType
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectSearchObject b/html/Search/Elements/SelectSearchObject
index 81e22e1..3b64fe7 100644
--- a/html/Search/Elements/SelectSearchObject
+++ b/html/Search/Elements/SelectSearchObject
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Elements/SelectSearchesForObjects b/html/Search/Elements/SelectSearchesForObjects
index b2a83cf..56a5ca8 100644
--- a/html/Search/Elements/SelectSearchesForObjects
+++ b/html/Search/Elements/SelectSearchesForObjects
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Results.html b/html/Search/Results.html
index e2c6be7..759f489 100755
--- a/html/Search/Results.html
+++ b/html/Search/Results.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Results.rdf b/html/Search/Results.rdf
index 7bcbe92..54fe8e4 100644
--- a/html/Search/Results.rdf
+++ b/html/Search/Results.rdf
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Results.tsv b/html/Search/Results.tsv
index b7c9a42..a7eafe4 100644
--- a/html/Search/Results.tsv
+++ b/html/Search/Results.tsv
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Search/Simple.html b/html/Search/Simple.html
index c531bd1..737a739 100644
--- a/html/Search/Simple.html
+++ b/html/Search/Simple.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Attachment/dhandler b/html/SelfService/Attachment/dhandler
index 592062b..669a107 100755
--- a/html/SelfService/Attachment/dhandler
+++ b/html/SelfService/Attachment/dhandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Closed.html b/html/SelfService/Closed.html
index 1f53655..739ad1f 100755
--- a/html/SelfService/Closed.html
+++ b/html/SelfService/Closed.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Create.html b/html/SelfService/Create.html
index 9a64b5f..b8039bc 100755
--- a/html/SelfService/Create.html
+++ b/html/SelfService/Create.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/CreateTicketInQueue.html b/html/SelfService/CreateTicketInQueue.html
index 3162f20..a46a5f7 100755
--- a/html/SelfService/CreateTicketInQueue.html
+++ b/html/SelfService/CreateTicketInQueue.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Display.html b/html/SelfService/Display.html
index 3c9ba85..6067adf 100755
--- a/html/SelfService/Display.html
+++ b/html/SelfService/Display.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Elements/GotoTicket b/html/SelfService/Elements/GotoTicket
index f2ad07a..7c77a8e 100755
--- a/html/SelfService/Elements/GotoTicket
+++ b/html/SelfService/Elements/GotoTicket
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Elements/Header b/html/SelfService/Elements/Header
index f26d191..7d1854e 100755
--- a/html/SelfService/Elements/Header
+++ b/html/SelfService/Elements/Header
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Elements/MyRequests b/html/SelfService/Elements/MyRequests
index 21f8ada..0a3d830 100755
--- a/html/SelfService/Elements/MyRequests
+++ b/html/SelfService/Elements/MyRequests
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Elements/Tabs b/html/SelfService/Elements/Tabs
index adc019f..fbded7e 100755
--- a/html/SelfService/Elements/Tabs
+++ b/html/SelfService/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Error.html b/html/SelfService/Error.html
index 17fa793..e54953a 100755
--- a/html/SelfService/Error.html
+++ b/html/SelfService/Error.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Prefs.html b/html/SelfService/Prefs.html
index 304ed5b..98a0fa1 100755
--- a/html/SelfService/Prefs.html
+++ b/html/SelfService/Prefs.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/Update.html b/html/SelfService/Update.html
index 9cdb4ed..ace9c8a 100755
--- a/html/SelfService/Update.html
+++ b/html/SelfService/Update.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/SelfService/index.html b/html/SelfService/index.html
index 517cb18..a52d295 100755
--- a/html/SelfService/index.html
+++ b/html/SelfService/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Attachment/dhandler b/html/Ticket/Attachment/dhandler
index 9d3c7b4..1acc299 100755
--- a/html/Ticket/Attachment/dhandler
+++ b/html/Ticket/Attachment/dhandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Create.html b/html/Ticket/Create.html
index c35ed91..950dfa9 100755
--- a/html/Ticket/Create.html
+++ b/html/Ticket/Create.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Display.html b/html/Ticket/Display.html
index 7bdd57f..ae85abf 100755
--- a/html/Ticket/Display.html
+++ b/html/Ticket/Display.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/AddWatchers b/html/Ticket/Elements/AddWatchers
index 7440069..2e1af0e 100755
--- a/html/Ticket/Elements/AddWatchers
+++ b/html/Ticket/Elements/AddWatchers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/BulkLinks b/html/Ticket/Elements/BulkLinks
index b92f503..cf07f6e 100755
--- a/html/Ticket/Elements/BulkLinks
+++ b/html/Ticket/Elements/BulkLinks
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/EditBasics b/html/Ticket/Elements/EditBasics
index 584bba8..29725b2 100755
--- a/html/Ticket/Elements/EditBasics
+++ b/html/Ticket/Elements/EditBasics
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/EditCustomField b/html/Ticket/Elements/EditCustomField
index 399b4a5..8f10742 100755
--- a/html/Ticket/Elements/EditCustomField
+++ b/html/Ticket/Elements/EditCustomField
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/EditCustomFields b/html/Ticket/Elements/EditCustomFields
index 14a5681..fcdd916 100755
--- a/html/Ticket/Elements/EditCustomFields
+++ b/html/Ticket/Elements/EditCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/EditDates b/html/Ticket/Elements/EditDates
index 16ee2d2..b0ee97c 100755
--- a/html/Ticket/Elements/EditDates
+++ b/html/Ticket/Elements/EditDates
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/EditPeople b/html/Ticket/Elements/EditPeople
index a933b7b..583e8a5 100755
--- a/html/Ticket/Elements/EditPeople
+++ b/html/Ticket/Elements/EditPeople
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/EditWatchers b/html/Ticket/Elements/EditWatchers
index 68d16ad..210fb22 100755
--- a/html/Ticket/Elements/EditWatchers
+++ b/html/Ticket/Elements/EditWatchers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/FindAttachments b/html/Ticket/Elements/FindAttachments
index ba562db..7548b87 100644
--- a/html/Ticket/Elements/FindAttachments
+++ b/html/Ticket/Elements/FindAttachments
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/LoadTextAttachments b/html/Ticket/Elements/LoadTextAttachments
index cc9558e..26b7d7f 100644
--- a/html/Ticket/Elements/LoadTextAttachments
+++ b/html/Ticket/Elements/LoadTextAttachments
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/PreviewScrips b/html/Ticket/Elements/PreviewScrips
index 5edf8b5..ddc253f 100755
--- a/html/Ticket/Elements/PreviewScrips
+++ b/html/Ticket/Elements/PreviewScrips
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/Reminders b/html/Ticket/Elements/Reminders
index ae72162..2d1a6da 100644
--- a/html/Ticket/Elements/Reminders
+++ b/html/Ticket/Elements/Reminders
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowAttachments b/html/Ticket/Elements/ShowAttachments
index e2c5f9c..796f5b2 100755
--- a/html/Ticket/Elements/ShowAttachments
+++ b/html/Ticket/Elements/ShowAttachments
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowBasics b/html/Ticket/Elements/ShowBasics
index fe20831..7d36b15 100755
--- a/html/Ticket/Elements/ShowBasics
+++ b/html/Ticket/Elements/ShowBasics
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowCustomFields b/html/Ticket/Elements/ShowCustomFields
index 17da78e..56bdd2c 100755
--- a/html/Ticket/Elements/ShowCustomFields
+++ b/html/Ticket/Elements/ShowCustomFields
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowDates b/html/Ticket/Elements/ShowDates
index 9217b79..65df8f5 100755
--- a/html/Ticket/Elements/ShowDates
+++ b/html/Ticket/Elements/ShowDates
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowDependencies b/html/Ticket/Elements/ShowDependencies
index ef093ee..85eae3d 100755
--- a/html/Ticket/Elements/ShowDependencies
+++ b/html/Ticket/Elements/ShowDependencies
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowGroupMembers b/html/Ticket/Elements/ShowGroupMembers
index 5c0a064..890519a 100644
--- a/html/Ticket/Elements/ShowGroupMembers
+++ b/html/Ticket/Elements/ShowGroupMembers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowHistory b/html/Ticket/Elements/ShowHistory
index a40aece..7d71dbd 100755
--- a/html/Ticket/Elements/ShowHistory
+++ b/html/Ticket/Elements/ShowHistory
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowMembers b/html/Ticket/Elements/ShowMembers
index 37e4ece..60fc8b2 100755
--- a/html/Ticket/Elements/ShowMembers
+++ b/html/Ticket/Elements/ShowMembers
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowMessageHeaders b/html/Ticket/Elements/ShowMessageHeaders
index 40b5c84..b0651f1 100755
--- a/html/Ticket/Elements/ShowMessageHeaders
+++ b/html/Ticket/Elements/ShowMessageHeaders
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowMessageStanza b/html/Ticket/Elements/ShowMessageStanza
index f166fbb..a922711 100755
--- a/html/Ticket/Elements/ShowMessageStanza
+++ b/html/Ticket/Elements/ShowMessageStanza
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowPeople b/html/Ticket/Elements/ShowPeople
index d00db52..a8056ae 100755
--- a/html/Ticket/Elements/ShowPeople
+++ b/html/Ticket/Elements/ShowPeople
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowQueue b/html/Ticket/Elements/ShowQueue
index da94d39..dd2d38c 100644
--- a/html/Ticket/Elements/ShowQueue
+++ b/html/Ticket/Elements/ShowQueue
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowRequestor b/html/Ticket/Elements/ShowRequestor
index 315664b..3c5f2db 100755
--- a/html/Ticket/Elements/ShowRequestor
+++ b/html/Ticket/Elements/ShowRequestor
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowSummary b/html/Ticket/Elements/ShowSummary
index aeec0fd..724ab4f 100755
--- a/html/Ticket/Elements/ShowSummary
+++ b/html/Ticket/Elements/ShowSummary
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowTime b/html/Ticket/Elements/ShowTime
index 2ce0311..e753987 100644
--- a/html/Ticket/Elements/ShowTime
+++ b/html/Ticket/Elements/ShowTime
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowTransaction b/html/Ticket/Elements/ShowTransaction
index 9fe08ce..4186860 100755
--- a/html/Ticket/Elements/ShowTransaction
+++ b/html/Ticket/Elements/ShowTransaction
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowTransactionAttachments b/html/Ticket/Elements/ShowTransactionAttachments
index 662b744..c8ec228 100644
--- a/html/Ticket/Elements/ShowTransactionAttachments
+++ b/html/Ticket/Elements/ShowTransactionAttachments
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/ShowUserEntry b/html/Ticket/Elements/ShowUserEntry
index eb6e836..86f5559 100644
--- a/html/Ticket/Elements/ShowUserEntry
+++ b/html/Ticket/Elements/ShowUserEntry
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Elements/Tabs b/html/Ticket/Elements/Tabs
index 98ed143..b7a48f3 100755
--- a/html/Ticket/Elements/Tabs
+++ b/html/Ticket/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/History.html b/html/Ticket/History.html
index 0f0a930..9753a59 100755
--- a/html/Ticket/History.html
+++ b/html/Ticket/History.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Modify.html b/html/Ticket/Modify.html
index 877bc0c..73ef42b 100755
--- a/html/Ticket/Modify.html
+++ b/html/Ticket/Modify.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/ModifyAll.html b/html/Ticket/ModifyAll.html
index 7ad5b87..5aa6f6c 100755
--- a/html/Ticket/ModifyAll.html
+++ b/html/Ticket/ModifyAll.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/ModifyDates.html b/html/Ticket/ModifyDates.html
index 189594f..be38bc2 100755
--- a/html/Ticket/ModifyDates.html
+++ b/html/Ticket/ModifyDates.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/ModifyLinks.html b/html/Ticket/ModifyLinks.html
index 1310f68..852a08c 100755
--- a/html/Ticket/ModifyLinks.html
+++ b/html/Ticket/ModifyLinks.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/ModifyPeople.html b/html/Ticket/ModifyPeople.html
index 5b5db16..7ceaea5 100755
--- a/html/Ticket/ModifyPeople.html
+++ b/html/Ticket/ModifyPeople.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Reminders.html b/html/Ticket/Reminders.html
index e2245a6..c424b2b 100755
--- a/html/Ticket/Reminders.html
+++ b/html/Ticket/Reminders.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/ShowEmailRecord.html b/html/Ticket/ShowEmailRecord.html
index b63da84..1f22154 100644
--- a/html/Ticket/ShowEmailRecord.html
+++ b/html/Ticket/ShowEmailRecord.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Ticket/Update.html b/html/Ticket/Update.html
index 171a0cb..2e5d2a4 100755
--- a/html/Ticket/Update.html
+++ b/html/Ticket/Update.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/Elements/Tabs b/html/Tools/Elements/Tabs
index b341c3c..52cc703 100644
--- a/html/Tools/Elements/Tabs
+++ b/html/Tools/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/MyDay.html b/html/Tools/MyDay.html
index 20758f8..215778b 100644
--- a/html/Tools/MyDay.html
+++ b/html/Tools/MyDay.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/Offline.html b/html/Tools/Offline.html
index 4558abd..23ecde8 100644
--- a/html/Tools/Offline.html
+++ b/html/Tools/Offline.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/Reports/CreatedByDates.html b/html/Tools/Reports/CreatedByDates.html
index 3df67ee..0e6526f 100644
--- a/html/Tools/Reports/CreatedByDates.html
+++ b/html/Tools/Reports/CreatedByDates.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/Reports/Elements/Tabs b/html/Tools/Reports/Elements/Tabs
index 7fa7de8..96cc931 100644
--- a/html/Tools/Reports/Elements/Tabs
+++ b/html/Tools/Reports/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/Reports/ResolvedByDates.html b/html/Tools/Reports/ResolvedByDates.html
index b0a66f4..084a042 100644
--- a/html/Tools/Reports/ResolvedByDates.html
+++ b/html/Tools/Reports/ResolvedByDates.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/Reports/ResolvedByOwner.html b/html/Tools/Reports/ResolvedByOwner.html
index 7e60a13..f6fe170 100644
--- a/html/Tools/Reports/ResolvedByOwner.html
+++ b/html/Tools/Reports/ResolvedByOwner.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/Reports/index.html b/html/Tools/Reports/index.html
index 0ba28c7..7947281 100644
--- a/html/Tools/Reports/index.html
+++ b/html/Tools/Reports/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Tools/index.html b/html/Tools/index.html
index f49868a..69e3d43 100644
--- a/html/Tools/index.html
+++ b/html/Tools/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Delegation.html b/html/User/Delegation.html
index a85a31c..b6b2668 100755
--- a/html/User/Delegation.html
+++ b/html/User/Delegation.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Elements/DelegateRights b/html/User/Elements/DelegateRights
index e519146..4a26443 100755
--- a/html/User/Elements/DelegateRights
+++ b/html/User/Elements/DelegateRights
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Elements/GroupTabs b/html/User/Elements/GroupTabs
index e02953d..cab9442 100755
--- a/html/User/Elements/GroupTabs
+++ b/html/User/Elements/GroupTabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Elements/Tabs b/html/User/Elements/Tabs
index 24faa8b..d5ec761 100755
--- a/html/User/Elements/Tabs
+++ b/html/User/Elements/Tabs
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Groups/Members.html b/html/User/Groups/Members.html
index a02aa32..ff76bd7 100755
--- a/html/User/Groups/Members.html
+++ b/html/User/Groups/Members.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Groups/Modify.html b/html/User/Groups/Modify.html
index f0e31f4..fb175b1 100755
--- a/html/User/Groups/Modify.html
+++ b/html/User/Groups/Modify.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Groups/index.html b/html/User/Groups/index.html
index 5e44feb..b823d18 100755
--- a/html/User/Groups/index.html
+++ b/html/User/Groups/index.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/User/Prefs.html b/html/User/Prefs.html
index 54a950d..7d5b028 100755
--- a/html/User/Prefs.html
+++ b/html/User/Prefs.html
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Widgets/ComboBox b/html/Widgets/ComboBox
index 164749c..c74955a 100644
--- a/html/Widgets/ComboBox
+++ b/html/Widgets/ComboBox
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Widgets/SavedSearch b/html/Widgets/SavedSearch
index b315212..edf4242 100644
--- a/html/Widgets/SavedSearch
+++ b/html/Widgets/SavedSearch
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Widgets/SelectionBox b/html/Widgets/SelectionBox
index c58a0a1..3500f00 100644
--- a/html/Widgets/SelectionBox
+++ b/html/Widgets/SelectionBox
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Widgets/TitleBox b/html/Widgets/TitleBox
index 3e4afa0..2be207b 100644
--- a/html/Widgets/TitleBox
+++ b/html/Widgets/TitleBox
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Widgets/TitleBoxEnd b/html/Widgets/TitleBoxEnd
index a1f18df..1abec84 100755
--- a/html/Widgets/TitleBoxEnd
+++ b/html/Widgets/TitleBoxEnd
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/Widgets/TitleBoxStart b/html/Widgets/TitleBoxStart
index 602106e..06507dc 100755
--- a/html/Widgets/TitleBoxStart
+++ b/html/Widgets/TitleBoxStart
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/autohandler b/html/autohandler
index 57ab22a..7f976ac 100755
--- a/html/autohandler
+++ b/html/autohandler
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/index.html b/html/index.html
index a74f3e5..431bcff 100755
--- a/html/index.html
+++ b/html/index.html
@@ -29,7 +29,7 @@ If you need commercial support, please contact us at sales at bestpractical.com.
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/html/l b/html/l
index a65cd2a..890e44d 100755
--- a/html/l
+++ b/html/l
@@ -2,7 +2,7 @@
 %# 
 %# COPYRIGHT:
 %#  
-%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 %#                                          <jesse at bestpractical.com>
 %# 
 %# (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT.pm.in b/lib/RT.pm.in
index 1853110..90d59dc 100755
--- a/lib/RT.pm.in
+++ b/lib/RT.pm.in
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ACE.pm b/lib/RT/ACE.pm
index 0cd1217..ad3c695 100755
--- a/lib/RT/ACE.pm
+++ b/lib/RT/ACE.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ACE_Overlay.pm b/lib/RT/ACE_Overlay.pm
index 1a245f3..6ca6fa0 100755
--- a/lib/RT/ACE_Overlay.pm
+++ b/lib/RT/ACE_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ACL.pm b/lib/RT/ACL.pm
index 9641292..eb215b0 100755
--- a/lib/RT/ACL.pm
+++ b/lib/RT/ACL.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ACL_Overlay.pm b/lib/RT/ACL_Overlay.pm
index 1329df0..1f90564 100755
--- a/lib/RT/ACL_Overlay.pm
+++ b/lib/RT/ACL_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/AutoOpen.pm b/lib/RT/Action/AutoOpen.pm
index 004ed13..c268907 100755
--- a/lib/RT/Action/AutoOpen.pm
+++ b/lib/RT/Action/AutoOpen.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/Autoreply.pm b/lib/RT/Action/Autoreply.pm
index ea56b9f..9b41664 100755
--- a/lib/RT/Action/Autoreply.pm
+++ b/lib/RT/Action/Autoreply.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/CreateTickets.pm b/lib/RT/Action/CreateTickets.pm
index 40d18d3..f40b558 100755
--- a/lib/RT/Action/CreateTickets.pm
+++ b/lib/RT/Action/CreateTickets.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/EscalatePriority.pm b/lib/RT/Action/EscalatePriority.pm
index 46635df..2f95bd5 100755
--- a/lib/RT/Action/EscalatePriority.pm
+++ b/lib/RT/Action/EscalatePriority.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/Generic.pm b/lib/RT/Action/Generic.pm
index 3232d48..8e2f225 100755
--- a/lib/RT/Action/Generic.pm
+++ b/lib/RT/Action/Generic.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/Notify.pm b/lib/RT/Action/Notify.pm
index 82cad1e..3af3fba 100755
--- a/lib/RT/Action/Notify.pm
+++ b/lib/RT/Action/Notify.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/NotifyAsComment.pm b/lib/RT/Action/NotifyAsComment.pm
index 215f453..50177f7 100755
--- a/lib/RT/Action/NotifyAsComment.pm
+++ b/lib/RT/Action/NotifyAsComment.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/RecordComment.pm b/lib/RT/Action/RecordComment.pm
index c0256d6..44945b5 100644
--- a/lib/RT/Action/RecordComment.pm
+++ b/lib/RT/Action/RecordComment.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/RecordCorrespondence.pm b/lib/RT/Action/RecordCorrespondence.pm
index 10a890e..db9569f 100644
--- a/lib/RT/Action/RecordCorrespondence.pm
+++ b/lib/RT/Action/RecordCorrespondence.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/ResolveMembers.pm b/lib/RT/Action/ResolveMembers.pm
index fab049b..0a2297c 100755
--- a/lib/RT/Action/ResolveMembers.pm
+++ b/lib/RT/Action/ResolveMembers.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/SendEmail.pm b/lib/RT/Action/SendEmail.pm
index ed5ec4f..0478ba0 100755
--- a/lib/RT/Action/SendEmail.pm
+++ b/lib/RT/Action/SendEmail.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/SetPriority.pm b/lib/RT/Action/SetPriority.pm
index b4c8ee1..b2923e1 100755
--- a/lib/RT/Action/SetPriority.pm
+++ b/lib/RT/Action/SetPriority.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Action/UserDefined.pm b/lib/RT/Action/UserDefined.pm
index 7bf6eee..33e864f 100755
--- a/lib/RT/Action/UserDefined.pm
+++ b/lib/RT/Action/UserDefined.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attachment.pm b/lib/RT/Attachment.pm
index f0a1987..593016e 100755
--- a/lib/RT/Attachment.pm
+++ b/lib/RT/Attachment.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attachment_Overlay.pm b/lib/RT/Attachment_Overlay.pm
index 7ab6d0a..8231737 100755
--- a/lib/RT/Attachment_Overlay.pm
+++ b/lib/RT/Attachment_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attachments.pm b/lib/RT/Attachments.pm
index 4411549..b6a3b71 100755
--- a/lib/RT/Attachments.pm
+++ b/lib/RT/Attachments.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attachments_Overlay.pm b/lib/RT/Attachments_Overlay.pm
index cedceac..d076615 100755
--- a/lib/RT/Attachments_Overlay.pm
+++ b/lib/RT/Attachments_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attribute.pm b/lib/RT/Attribute.pm
index e513c28..32d2d61 100644
--- a/lib/RT/Attribute.pm
+++ b/lib/RT/Attribute.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attribute_Overlay.pm b/lib/RT/Attribute_Overlay.pm
index 72071f5..5142cbf 100644
--- a/lib/RT/Attribute_Overlay.pm
+++ b/lib/RT/Attribute_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attributes.pm b/lib/RT/Attributes.pm
index 12f659f..2cd83e8 100644
--- a/lib/RT/Attributes.pm
+++ b/lib/RT/Attributes.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Attributes_Overlay.pm b/lib/RT/Attributes_Overlay.pm
index e0c2f5a..89108d4 100644
--- a/lib/RT/Attributes_Overlay.pm
+++ b/lib/RT/Attributes_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Base.pm b/lib/RT/Base.pm
index 9a3ab69..869f6e4 100755
--- a/lib/RT/Base.pm
+++ b/lib/RT/Base.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CachedGroupMember.pm b/lib/RT/CachedGroupMember.pm
index 933c13b..b08c73a 100755
--- a/lib/RT/CachedGroupMember.pm
+++ b/lib/RT/CachedGroupMember.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CachedGroupMember_Overlay.pm b/lib/RT/CachedGroupMember_Overlay.pm
index ffbbc8d..7e1aa81 100755
--- a/lib/RT/CachedGroupMember_Overlay.pm
+++ b/lib/RT/CachedGroupMember_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CachedGroupMembers.pm b/lib/RT/CachedGroupMembers.pm
index a7448d1..a6e1fa6 100755
--- a/lib/RT/CachedGroupMembers.pm
+++ b/lib/RT/CachedGroupMembers.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CachedGroupMembers_Overlay.pm b/lib/RT/CachedGroupMembers_Overlay.pm
index c3b4fdd..90c9b0b 100755
--- a/lib/RT/CachedGroupMembers_Overlay.pm
+++ b/lib/RT/CachedGroupMembers_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/AnyTransaction.pm b/lib/RT/Condition/AnyTransaction.pm
index 9b1bb8c..bf43031 100755
--- a/lib/RT/Condition/AnyTransaction.pm
+++ b/lib/RT/Condition/AnyTransaction.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/BeforeDue.pm b/lib/RT/Condition/BeforeDue.pm
index c42e07b..ee485e7 100755
--- a/lib/RT/Condition/BeforeDue.pm
+++ b/lib/RT/Condition/BeforeDue.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/Generic.pm b/lib/RT/Condition/Generic.pm
index da6ec47..9feae28 100755
--- a/lib/RT/Condition/Generic.pm
+++ b/lib/RT/Condition/Generic.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/Overdue.pm b/lib/RT/Condition/Overdue.pm
index 4fb7f0d..9cc6418 100755
--- a/lib/RT/Condition/Overdue.pm
+++ b/lib/RT/Condition/Overdue.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/OwnerChange.pm b/lib/RT/Condition/OwnerChange.pm
index 2e10602..b95134e 100755
--- a/lib/RT/Condition/OwnerChange.pm
+++ b/lib/RT/Condition/OwnerChange.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/PriorityChange.pm b/lib/RT/Condition/PriorityChange.pm
index 533cc4b..6152ffa 100644
--- a/lib/RT/Condition/PriorityChange.pm
+++ b/lib/RT/Condition/PriorityChange.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/PriorityExceeds.pm b/lib/RT/Condition/PriorityExceeds.pm
index 5f92957..135dc66 100755
--- a/lib/RT/Condition/PriorityExceeds.pm
+++ b/lib/RT/Condition/PriorityExceeds.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/QueueChange.pm b/lib/RT/Condition/QueueChange.pm
index d5fbeec..6d18182 100755
--- a/lib/RT/Condition/QueueChange.pm
+++ b/lib/RT/Condition/QueueChange.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/StatusChange.pm b/lib/RT/Condition/StatusChange.pm
index 20da9e7..23eb8f4 100755
--- a/lib/RT/Condition/StatusChange.pm
+++ b/lib/RT/Condition/StatusChange.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Condition/UserDefined.pm b/lib/RT/Condition/UserDefined.pm
index f4d2e27..e0a0e88 100755
--- a/lib/RT/Condition/UserDefined.pm
+++ b/lib/RT/Condition/UserDefined.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CurrentUser.pm b/lib/RT/CurrentUser.pm
index 3193034..fd2b000 100755
--- a/lib/RT/CurrentUser.pm
+++ b/lib/RT/CurrentUser.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomField.pm b/lib/RT/CustomField.pm
index ba51d5b..f064aa5 100755
--- a/lib/RT/CustomField.pm
+++ b/lib/RT/CustomField.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomFieldValue.pm b/lib/RT/CustomFieldValue.pm
index 3a08176..935fa19 100755
--- a/lib/RT/CustomFieldValue.pm
+++ b/lib/RT/CustomFieldValue.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomFieldValue_Overlay.pm b/lib/RT/CustomFieldValue_Overlay.pm
index be1070d..64276f1 100644
--- a/lib/RT/CustomFieldValue_Overlay.pm
+++ b/lib/RT/CustomFieldValue_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomFieldValues.pm b/lib/RT/CustomFieldValues.pm
index 32ab860..be68015 100755
--- a/lib/RT/CustomFieldValues.pm
+++ b/lib/RT/CustomFieldValues.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomFieldValues_Overlay.pm b/lib/RT/CustomFieldValues_Overlay.pm
index 543a986..47131b2 100755
--- a/lib/RT/CustomFieldValues_Overlay.pm
+++ b/lib/RT/CustomFieldValues_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomField_Overlay.pm b/lib/RT/CustomField_Overlay.pm
index 2bb42ed..c82d1b1 100755
--- a/lib/RT/CustomField_Overlay.pm
+++ b/lib/RT/CustomField_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomFields.pm b/lib/RT/CustomFields.pm
index 7ac18fb..3765273 100755
--- a/lib/RT/CustomFields.pm
+++ b/lib/RT/CustomFields.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/CustomFields_Overlay.pm b/lib/RT/CustomFields_Overlay.pm
index b9f3787..09922f3 100755
--- a/lib/RT/CustomFields_Overlay.pm
+++ b/lib/RT/CustomFields_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Date.pm b/lib/RT/Date.pm
index 8e9383f..7280228 100755
--- a/lib/RT/Date.pm
+++ b/lib/RT/Date.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/EmailParser.pm b/lib/RT/EmailParser.pm
index b272020..0dd7d48 100755
--- a/lib/RT/EmailParser.pm
+++ b/lib/RT/EmailParser.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Group.pm b/lib/RT/Group.pm
index 53aa326..e25f814 100755
--- a/lib/RT/Group.pm
+++ b/lib/RT/Group.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/GroupMember.pm b/lib/RT/GroupMember.pm
index f943bd9..3301dd3 100755
--- a/lib/RT/GroupMember.pm
+++ b/lib/RT/GroupMember.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/GroupMember_Overlay.pm b/lib/RT/GroupMember_Overlay.pm
index ac4f9da..96defb4 100755
--- a/lib/RT/GroupMember_Overlay.pm
+++ b/lib/RT/GroupMember_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/GroupMembers.pm b/lib/RT/GroupMembers.pm
index 8c43133..ec5ae00 100755
--- a/lib/RT/GroupMembers.pm
+++ b/lib/RT/GroupMembers.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/GroupMembers_Overlay.pm b/lib/RT/GroupMembers_Overlay.pm
index fab341d..0b7e705 100755
--- a/lib/RT/GroupMembers_Overlay.pm
+++ b/lib/RT/GroupMembers_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Group_Overlay.pm b/lib/RT/Group_Overlay.pm
index eabeab0..973edc1 100755
--- a/lib/RT/Group_Overlay.pm
+++ b/lib/RT/Group_Overlay.pm
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Groups.pm b/lib/RT/Groups.pm
index 8522aa5..0a5fd34 100755
--- a/lib/RT/Groups.pm
+++ b/lib/RT/Groups.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Groups_Overlay.pm b/lib/RT/Groups_Overlay.pm
index 0cbebec..a8b9009 100755
--- a/lib/RT/Groups_Overlay.pm
+++ b/lib/RT/Groups_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Handle.pm b/lib/RT/Handle.pm
index b5f94d8..ef1b4fe 100755
--- a/lib/RT/Handle.pm
+++ b/lib/RT/Handle.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/I18N.pm b/lib/RT/I18N.pm
index 28dcac7..36d479c 100755
--- a/lib/RT/I18N.pm
+++ b/lib/RT/I18N.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/I18N/cs.pm b/lib/RT/I18N/cs.pm
index f4157f5..957223b 100755
--- a/lib/RT/I18N/cs.pm
+++ b/lib/RT/I18N/cs.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/I18N/i_default.pm b/lib/RT/I18N/i_default.pm
index 4e00f82..c730a12 100755
--- a/lib/RT/I18N/i_default.pm
+++ b/lib/RT/I18N/i_default.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/CLI.pm b/lib/RT/Interface/CLI.pm
index b975502..4abc4b3 100755
--- a/lib/RT/Interface/CLI.pm
+++ b/lib/RT/Interface/CLI.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Email.pm b/lib/RT/Interface/Email.pm
index 14ae2a0..25d17c6 100755
--- a/lib/RT/Interface/Email.pm
+++ b/lib/RT/Interface/Email.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Email/Auth/GnuPG.pm b/lib/RT/Interface/Email/Auth/GnuPG.pm
index e543c4b..0489c32 100755
--- a/lib/RT/Interface/Email/Auth/GnuPG.pm
+++ b/lib/RT/Interface/Email/Auth/GnuPG.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Email/Auth/MailFrom.pm b/lib/RT/Interface/Email/Auth/MailFrom.pm
index 71cdf60..3ae15ce 100755
--- a/lib/RT/Interface/Email/Auth/MailFrom.pm
+++ b/lib/RT/Interface/Email/Auth/MailFrom.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Email/Filter/SpamAssassin.pm b/lib/RT/Interface/Email/Filter/SpamAssassin.pm
index 176b394..22a3d1f 100755
--- a/lib/RT/Interface/Email/Filter/SpamAssassin.pm
+++ b/lib/RT/Interface/Email/Filter/SpamAssassin.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/REST.pm b/lib/RT/Interface/REST.pm
index 909991c..c79b738 100755
--- a/lib/RT/Interface/REST.pm
+++ b/lib/RT/Interface/REST.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Web.pm b/lib/RT/Interface/Web.pm
index 4e5fca1..11764a7 100755
--- a/lib/RT/Interface/Web.pm
+++ b/lib/RT/Interface/Web.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Web/Handler.pm b/lib/RT/Interface/Web/Handler.pm
index 260a3b3..1d852d0 100644
--- a/lib/RT/Interface/Web/Handler.pm
+++ b/lib/RT/Interface/Web/Handler.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Web/Menu.pm b/lib/RT/Interface/Web/Menu.pm
index de479da..1f9b0f4 100644
--- a/lib/RT/Interface/Web/Menu.pm
+++ b/lib/RT/Interface/Web/Menu.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Web/Menu/Item.pm b/lib/RT/Interface/Web/Menu/Item.pm
index 4149a0b..1ef53b4 100644
--- a/lib/RT/Interface/Web/Menu/Item.pm
+++ b/lib/RT/Interface/Web/Menu/Item.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Web/QueryBuilder.pm b/lib/RT/Interface/Web/QueryBuilder.pm
index f93c415..967fd4a 100755
--- a/lib/RT/Interface/Web/QueryBuilder.pm
+++ b/lib/RT/Interface/Web/QueryBuilder.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Web/QueryBuilder/Tree.pm b/lib/RT/Interface/Web/QueryBuilder/Tree.pm
index b605206..81f3d84 100755
--- a/lib/RT/Interface/Web/QueryBuilder/Tree.pm
+++ b/lib/RT/Interface/Web/QueryBuilder/Tree.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Interface/Web/Standalone.pm b/lib/RT/Interface/Web/Standalone.pm
index f625dd8..0478822 100755
--- a/lib/RT/Interface/Web/Standalone.pm
+++ b/lib/RT/Interface/Web/Standalone.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Link.pm b/lib/RT/Link.pm
index 8737b50..17df22f 100755
--- a/lib/RT/Link.pm
+++ b/lib/RT/Link.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Link_Overlay.pm b/lib/RT/Link_Overlay.pm
index a89f08a..65fbc55 100755
--- a/lib/RT/Link_Overlay.pm
+++ b/lib/RT/Link_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Links.pm b/lib/RT/Links.pm
index 47d78fc..f015efb 100755
--- a/lib/RT/Links.pm
+++ b/lib/RT/Links.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Links_Overlay.pm b/lib/RT/Links_Overlay.pm
index 91ac2fc..9d8e350 100755
--- a/lib/RT/Links_Overlay.pm
+++ b/lib/RT/Links_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomField.pm b/lib/RT/ObjectCustomField.pm
index f94bf37..9bc9385 100644
--- a/lib/RT/ObjectCustomField.pm
+++ b/lib/RT/ObjectCustomField.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomFieldValue.pm b/lib/RT/ObjectCustomFieldValue.pm
index b282b53..2030a81 100644
--- a/lib/RT/ObjectCustomFieldValue.pm
+++ b/lib/RT/ObjectCustomFieldValue.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomFieldValue_Overlay.pm b/lib/RT/ObjectCustomFieldValue_Overlay.pm
index 7f50f2c..e051839 100644
--- a/lib/RT/ObjectCustomFieldValue_Overlay.pm
+++ b/lib/RT/ObjectCustomFieldValue_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomFieldValues.pm b/lib/RT/ObjectCustomFieldValues.pm
index adf4829..ee874c5 100644
--- a/lib/RT/ObjectCustomFieldValues.pm
+++ b/lib/RT/ObjectCustomFieldValues.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomFieldValues_Overlay.pm b/lib/RT/ObjectCustomFieldValues_Overlay.pm
index 0da24bc..3b36c16 100644
--- a/lib/RT/ObjectCustomFieldValues_Overlay.pm
+++ b/lib/RT/ObjectCustomFieldValues_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomField_Overlay.pm b/lib/RT/ObjectCustomField_Overlay.pm
index c4eb437..38a2d1e 100644
--- a/lib/RT/ObjectCustomField_Overlay.pm
+++ b/lib/RT/ObjectCustomField_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomFields.pm b/lib/RT/ObjectCustomFields.pm
index 43534cb..ea95542 100644
--- a/lib/RT/ObjectCustomFields.pm
+++ b/lib/RT/ObjectCustomFields.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ObjectCustomFields_Overlay.pm b/lib/RT/ObjectCustomFields_Overlay.pm
index 9128f14..5974d2f 100644
--- a/lib/RT/ObjectCustomFields_Overlay.pm
+++ b/lib/RT/ObjectCustomFields_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Principal.pm b/lib/RT/Principal.pm
index f5c5e74..733f9f3 100755
--- a/lib/RT/Principal.pm
+++ b/lib/RT/Principal.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Principal_Overlay.pm b/lib/RT/Principal_Overlay.pm
index c444a1b..ee7d1d3 100755
--- a/lib/RT/Principal_Overlay.pm
+++ b/lib/RT/Principal_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Principals.pm b/lib/RT/Principals.pm
index 9125f79..f685fec 100755
--- a/lib/RT/Principals.pm
+++ b/lib/RT/Principals.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Principals_Overlay.pm b/lib/RT/Principals_Overlay.pm
index 5883ee4..238d126 100755
--- a/lib/RT/Principals_Overlay.pm
+++ b/lib/RT/Principals_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Queue.pm b/lib/RT/Queue.pm
index 42fa04c..e13afb8 100755
--- a/lib/RT/Queue.pm
+++ b/lib/RT/Queue.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Queue_Overlay.pm b/lib/RT/Queue_Overlay.pm
index 7d93852..8a3ee1b 100755
--- a/lib/RT/Queue_Overlay.pm
+++ b/lib/RT/Queue_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Queues.pm b/lib/RT/Queues.pm
index ccf1e42..41d21f5 100755
--- a/lib/RT/Queues.pm
+++ b/lib/RT/Queues.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Queues_Overlay.pm b/lib/RT/Queues_Overlay.pm
index 406b92c..870a441 100755
--- a/lib/RT/Queues_Overlay.pm
+++ b/lib/RT/Queues_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Record.pm b/lib/RT/Record.pm
index 262bd20..8baf0f5 100755
--- a/lib/RT/Record.pm
+++ b/lib/RT/Record.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Reminders.pm b/lib/RT/Reminders.pm
index d2ea9cc..810f969 100644
--- a/lib/RT/Reminders.pm
+++ b/lib/RT/Reminders.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Report/Tickets.pm b/lib/RT/Report/Tickets.pm
index c1834ca..06e5d56 100644
--- a/lib/RT/Report/Tickets.pm
+++ b/lib/RT/Report/Tickets.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Report/Tickets/Entry.pm b/lib/RT/Report/Tickets/Entry.pm
index e06fa8c..e8779af 100644
--- a/lib/RT/Report/Tickets/Entry.pm
+++ b/lib/RT/Report/Tickets/Entry.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/SavedSearch.pm b/lib/RT/SavedSearch.pm
index a694d7a..467f584 100644
--- a/lib/RT/SavedSearch.pm
+++ b/lib/RT/SavedSearch.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/SavedSearches.pm b/lib/RT/SavedSearches.pm
index a981904..56b9879 100644
--- a/lib/RT/SavedSearches.pm
+++ b/lib/RT/SavedSearches.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Scrip.pm b/lib/RT/Scrip.pm
index 11b8d94..09a65b7 100755
--- a/lib/RT/Scrip.pm
+++ b/lib/RT/Scrip.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripAction.pm b/lib/RT/ScripAction.pm
index daa74f3..3d7d41c 100755
--- a/lib/RT/ScripAction.pm
+++ b/lib/RT/ScripAction.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripAction_Overlay.pm b/lib/RT/ScripAction_Overlay.pm
index e99ff14..553703f 100755
--- a/lib/RT/ScripAction_Overlay.pm
+++ b/lib/RT/ScripAction_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripActions.pm b/lib/RT/ScripActions.pm
index b186fb8..4005c01 100755
--- a/lib/RT/ScripActions.pm
+++ b/lib/RT/ScripActions.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripActions_Overlay.pm b/lib/RT/ScripActions_Overlay.pm
index 97f7750..ac96055 100755
--- a/lib/RT/ScripActions_Overlay.pm
+++ b/lib/RT/ScripActions_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripCondition.pm b/lib/RT/ScripCondition.pm
index 3303398..1d7c571 100755
--- a/lib/RT/ScripCondition.pm
+++ b/lib/RT/ScripCondition.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripCondition_Overlay.pm b/lib/RT/ScripCondition_Overlay.pm
index 30146ec..5fcd43a 100755
--- a/lib/RT/ScripCondition_Overlay.pm
+++ b/lib/RT/ScripCondition_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripConditions.pm b/lib/RT/ScripConditions.pm
index 623ba10..7138e83 100755
--- a/lib/RT/ScripConditions.pm
+++ b/lib/RT/ScripConditions.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/ScripConditions_Overlay.pm b/lib/RT/ScripConditions_Overlay.pm
index 153eb19..58ad3e6 100755
--- a/lib/RT/ScripConditions_Overlay.pm
+++ b/lib/RT/ScripConditions_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Scrip_Overlay.pm b/lib/RT/Scrip_Overlay.pm
index cf66907..23e85d4 100755
--- a/lib/RT/Scrip_Overlay.pm
+++ b/lib/RT/Scrip_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Scrips.pm b/lib/RT/Scrips.pm
index 684012f..05fadcf 100755
--- a/lib/RT/Scrips.pm
+++ b/lib/RT/Scrips.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Scrips_Overlay.pm b/lib/RT/Scrips_Overlay.pm
index 8c6e1d3..43dd31e 100644
--- a/lib/RT/Scrips_Overlay.pm
+++ b/lib/RT/Scrips_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Search/ActiveTicketsInQueue.pm b/lib/RT/Search/ActiveTicketsInQueue.pm
index 3336ed7..2d74b80 100755
--- a/lib/RT/Search/ActiveTicketsInQueue.pm
+++ b/lib/RT/Search/ActiveTicketsInQueue.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Search/FromSQL.pm b/lib/RT/Search/FromSQL.pm
index 6e4708f..80b6a63 100644
--- a/lib/RT/Search/FromSQL.pm
+++ b/lib/RT/Search/FromSQL.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Search/Generic.pm b/lib/RT/Search/Generic.pm
index 68940de..facab08 100755
--- a/lib/RT/Search/Generic.pm
+++ b/lib/RT/Search/Generic.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Search/Googleish.pm b/lib/RT/Search/Googleish.pm
index c784b1b..2a015c0 100644
--- a/lib/RT/Search/Googleish.pm
+++ b/lib/RT/Search/Googleish.pm
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/SearchBuilder.pm b/lib/RT/SearchBuilder.pm
index 62ae13e..c3c2045 100755
--- a/lib/RT/SearchBuilder.pm
+++ b/lib/RT/SearchBuilder.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/System.pm b/lib/RT/System.pm
index 2d9ebb0..4a525ac 100755
--- a/lib/RT/System.pm
+++ b/lib/RT/System.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Template.pm b/lib/RT/Template.pm
index a46eef1..94f370c 100755
--- a/lib/RT/Template.pm
+++ b/lib/RT/Template.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Template_Overlay.pm b/lib/RT/Template_Overlay.pm
index 9706404..52aff23 100755
--- a/lib/RT/Template_Overlay.pm
+++ b/lib/RT/Template_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Templates.pm b/lib/RT/Templates.pm
index 9a2acbd..1d36098 100755
--- a/lib/RT/Templates.pm
+++ b/lib/RT/Templates.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Templates_Overlay.pm b/lib/RT/Templates_Overlay.pm
index 0a91789..e50431a 100755
--- a/lib/RT/Templates_Overlay.pm
+++ b/lib/RT/Templates_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Ticket.pm b/lib/RT/Ticket.pm
index 81bbbd0..646dcb2 100755
--- a/lib/RT/Ticket.pm
+++ b/lib/RT/Ticket.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Ticket_Overlay.pm b/lib/RT/Ticket_Overlay.pm
index 90f83a8..2c4d2df 100755
--- a/lib/RT/Ticket_Overlay.pm
+++ b/lib/RT/Ticket_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Tickets.pm b/lib/RT/Tickets.pm
index 2d98b1e..b2d0c93 100755
--- a/lib/RT/Tickets.pm
+++ b/lib/RT/Tickets.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Tickets_Overlay.pm b/lib/RT/Tickets_Overlay.pm
index 5378e71..3ef54e9 100755
--- a/lib/RT/Tickets_Overlay.pm
+++ b/lib/RT/Tickets_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Tickets_Overlay_SQL.pm b/lib/RT/Tickets_Overlay_SQL.pm
index 1112430..5d6a915 100755
--- a/lib/RT/Tickets_Overlay_SQL.pm
+++ b/lib/RT/Tickets_Overlay_SQL.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Transaction.pm b/lib/RT/Transaction.pm
index 7757b6a..974564c 100755
--- a/lib/RT/Transaction.pm
+++ b/lib/RT/Transaction.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Transaction_Overlay.pm b/lib/RT/Transaction_Overlay.pm
index 5716d66..2243218 100755
--- a/lib/RT/Transaction_Overlay.pm
+++ b/lib/RT/Transaction_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Transactions.pm b/lib/RT/Transactions.pm
index 447ab1a..478d1ba 100755
--- a/lib/RT/Transactions.pm
+++ b/lib/RT/Transactions.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Transactions_Overlay.pm b/lib/RT/Transactions_Overlay.pm
index 1429efa..855ef7e 100755
--- a/lib/RT/Transactions_Overlay.pm
+++ b/lib/RT/Transactions_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/URI.pm b/lib/RT/URI.pm
index bd311df..b764c30 100755
--- a/lib/RT/URI.pm
+++ b/lib/RT/URI.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/URI/base.pm b/lib/RT/URI/base.pm
index d6ee402..c2bc29b 100755
--- a/lib/RT/URI/base.pm
+++ b/lib/RT/URI/base.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/URI/fsck_com_rt.pm b/lib/RT/URI/fsck_com_rt.pm
index d652ec3..3deae94 100755
--- a/lib/RT/URI/fsck_com_rt.pm
+++ b/lib/RT/URI/fsck_com_rt.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/URI/t.pm b/lib/RT/URI/t.pm
index d07144a..0a5188e 100644
--- a/lib/RT/URI/t.pm
+++ b/lib/RT/URI/t.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/User.pm b/lib/RT/User.pm
index 5c5eb7f..a366f96 100755
--- a/lib/RT/User.pm
+++ b/lib/RT/User.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/User_Overlay.pm b/lib/RT/User_Overlay.pm
index fd83630..41bfaf0 100755
--- a/lib/RT/User_Overlay.pm
+++ b/lib/RT/User_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Users.pm b/lib/RT/Users.pm
index 8d57484..ca9680d 100755
--- a/lib/RT/Users.pm
+++ b/lib/RT/Users.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/lib/RT/Users_Overlay.pm b/lib/RT/Users_Overlay.pm
index 96621e3..c352b03 100755
--- a/lib/RT/Users_Overlay.pm
+++ b/lib/RT/Users_Overlay.pm
@@ -2,7 +2,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/extract-message-catalog b/sbin/extract-message-catalog
index 44f8d51..8e5adda 100755
--- a/sbin/extract-message-catalog
+++ b/sbin/extract-message-catalog
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/extract_pod_tests b/sbin/extract_pod_tests
index 897564d..304d0d0 100755
--- a/sbin/extract_pod_tests
+++ b/sbin/extract_pod_tests
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/factory b/sbin/factory
index 6b2d896..273a391 100755
--- a/sbin/factory
+++ b/sbin/factory
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/license_tag b/sbin/license_tag
index ddb4368..e1c2e61 100755
--- a/sbin/license_tag
+++ b/sbin/license_tag
@@ -5,7 +5,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
@@ -52,7 +52,7 @@ my $LICENSE  = <<'EOL';
 
 COPYRIGHT:
  
-This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
                                          <jesse at bestpractical.com>
 
 (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/regression_harness b/sbin/regression_harness
index 7460135..828ebb2 100755
--- a/sbin/regression_harness
+++ b/sbin/regression_harness
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/rt-dump-database.in b/sbin/rt-dump-database.in
index 10670a2..9cf29a4 100755
--- a/sbin/rt-dump-database.in
+++ b/sbin/rt-dump-database.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/rt-setup-database.in b/sbin/rt-setup-database.in
index f134f5b..e1b9d2b 100755
--- a/sbin/rt-setup-database.in
+++ b/sbin/rt-setup-database.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)
diff --git a/sbin/rt-test-dependencies.in b/sbin/rt-test-dependencies.in
index f978d7b..e0aab12 100755
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -3,7 +3,7 @@
 # 
 # COPYRIGHT:
 #  
-# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
+# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
 #                                          <jesse at bestpractical.com>
 # 
 # (Except where explicitly superseded by other copyright notices)

commit ed885f42983757446070080aefd2f84bddc31501
Merge: 60bac39 3f784c4
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:01:42 2011 -0400

    Merge branch 'security/3.6/force-null' into 3.6.11-releng
    
    Fixes CVE-2011-1686 CVE-2011-1687


commit 4e23f1bf3a7d47541fa0548b2c6e64397e096224
Merge: ed885f4 fc4bdf1
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:02:11 2011 -0400

    Merge branch 'security/3.6/limit-security-restriction' into 3.6.11-releng
    
    Fixes CVE-2011-1686
    
    Conflicts:
    	lib/RT/SearchBuilder.pm

diff --cc lib/RT/SearchBuilder.pm
index 01c63ad,75c6953..8e27785
--- a/lib/RT/SearchBuilder.pm
+++ b/lib/RT/SearchBuilder.pm
@@@ -306,19 -302,32 +306,39 @@@ injection attacks when we pass through 
  
  sub Limit {
      my $self = shift;
-     my %args = (
+     my %ARGS = (
          CASESENSITIVE => 1,
-         @_
+         OPERATOR => '=',
+         @_,
      );
  
 +    # We use the same regex here that DBIx::SearchBuilder uses to exclude
 +    # values from quoting
-     if ( ($args{'OPERATOR'} || '') =~ /IS/i ) {
++    if ( $ARGS{'OPERATOR'} =~ /IS/i ) {
 +        # Don't pass anything but NULL for IS and IS NOT
-         $args{'VALUE'} = 'NULL';
++        $ARGS{'VALUE'} = 'NULL';
 +    }
 +
-     $self->SUPER::Limit(%args);
+     if ($ARGS{FUNCTION}) {
+         ($ARGS{ALIAS}, $ARGS{FIELD}) = split /\./, delete $ARGS{FUNCTION}, 2;
+         $self->SUPER::Limit(%ARGS);
+     } elsif ($ARGS{FIELD} =~ /\W/
+           or $ARGS{OPERATOR} !~ /^(=|<|>|!=|<>|<=|>=
+                                   |(NOT\s*)?LIKE
+                                   |(NOT\s*)?(STARTS|ENDS)WITH
+                                   |(NOT\s*)?MATCHES
+                                   |IS(\s*NOT)?
+                                   |IN)$/ix) {
+         $RT::Logger->crit("Possible SQL injection attack: $ARGS{FIELD} $ARGS{OPERATOR}");
+         $self->SUPER::Limit(
+             %ARGS,
+             FIELD    => 'id',
+             OPERATOR => '<',
+             VALUE    => '0',
+         );
+     } else {
+         $self->SUPER::Limit(%ARGS);
+     }
  }
  
  # }}}

commit 213b83eda6040b7cea7b204edf96e1401872fbf5
Merge: 4e23f1b 9444a84
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:03:10 2011 -0400

    Merge branch 'security/3.6/orderby-injection' into 3.6.11-releng
    
    Fixes CVE-2011-1686 CVE-2011-1687


commit 0753fc68ce498baeb7a0d1b99e12210a3ae5830b
Merge: 213b83e 4333cff
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:03:28 2011 -0400

    Merge branch 'security/3.6/path-traversal' into 3.6.11-releng
    
    Fixes CVE-2011-1688


commit 2a7bb4e167a9ef8f07450d748066c4ef39df0185
Merge: 0753fc6 8f29b23
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:04:43 2011 -0400

    Merge branch 'security/3.6/private-components' into 3.6.11-releng
    
    Fixes CVE-2011-1689


commit 7de528ae92282f9fb138f5b5d30a07d53c62c71f
Merge: 2a7bb4e df70fc2
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:05:24 2011 -0400

    Merge branch 'security/3.6/remove-login-goto' into 3.6.11-releng
    
    Fixes CVE-2011-1690


commit e9f2ae23323cd0197c269c3a4c089e2913035e7f
Merge: 7de528a 8f1beb5
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:05:45 2011 -0400

    Merge branch 'security/3.6/restrict-charting' into 3.6.11-releng
    
    Fixes CVE-2011-1686 CVE-2011-1687


commit 988c2f248989246f97d3ed7f79a56b3fd68a7ae0
Merge: e9f2ae2 c1da8c7
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:06:10 2011 -0400

    Merge branch 'security/3.6/ticketsql-private-fields' into 3.6.11-releng
    
    Fixes CVE-2011-1686 CVE-2011-1687


commit d45c2034a9a3a3d1f514506494b981f3915ada52
Merge: 988c2f2 858ad18
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:06:34 2011 -0400

    Merge branch 'security/3.6/validate-refresh' into 3.6.11-releng
    
    Fixes CVE-2011-1689


commit c320dceb66d59b46178555f3b96ba262bc7da472
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Apr 13 20:08:03 2011 -0400

    prepare for 3.6.11

diff --git a/configure.ac b/configure.ac
index 762eb34..c43326b 100755
--- a/configure.ac
+++ b/configure.ac
@@ -7,7 +7,7 @@ AC_REVISION($Revision$)dnl
 
 dnl Setup autoconf
 AC_PREREQ(2.53)
-AC_INIT(RT, [3.6.HEAD], [rt-bugs at bestpractical.com])
+AC_INIT(RT, [3.6.11], [rt-bugs at bestpractical.com])
 AC_CONFIG_SRCDIR([lib/RT.pm.in])
 
 dnl Extract RT version number components

-----------------------------------------------------------------------


More information about the Rt-commit mailing list