Changeset 23354 for main/trunk


Ignore:
Timestamp:
2010-11-28T23:36:01+13:00 (13 years ago)
Author:
davidb
Message:

AZCompactList was still using old style 'add' parameter. Through change from Kathy, this is parameter is no longer needed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/classify/AZCompactList.pm

    r23116 r23354  
    491491        if ($self->{'doclevel'} =~ m/^top/i) { # toplevel
    492492            $self->{'classifiers'}->{$node_name}->{'classifyobj'}
    493             ->classify($doc_obj,"add", "Section=$section");
     493            ->classify($doc_obj,"Section=$section");
    494494        } else { # section level
    495495            # Thanks to Don Gourley for this...
    496496            # classify can't handle multi-level section
    497497            $self->{'classifiers'}->{$node_name}->{'classifyobj'}
    498             ->classify_section($section, $doc_obj, "add", $sortmeta);
     498            ->classify_section($section, $doc_obj, $sortmeta);
    499499        }
    500500        }
     
    502502        {
    503503        $self->{'classifiers'}->{$node_name}->{'classifyobj'}
    504         ->classify($doc_obj,"add");
     504        ->classify($doc_obj);
    505505        }
    506506    } else { # this key is not in the hash
Note: See TracChangeset for help on using the changeset viewer.