- Timestamp:
- 11/11/08 16:01:24 (8 weeks ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/pop-proxy-branch/ebox/src/EBox/LogObserver.pm
r11604 r11636 112 112 # - filter: refrence to a method used to filter out rows, the method will 113 113 # be supplied to a reference to a hash with the row values and 114 # if it returns false the row w would be excluded114 # if it returns false the row would be excluded 115 115 sub tableInfo 116 116 { … … 168 168 if (ref $ti eq 'HASH') { 169 169 EBox::warn('tableInfo() in ' . $self->name . 170 ' must return a reference to a list of hashes not the hash itself');171 170 ' must return a reference to a list of hashes not the hash itself'); 171 172 172 @tableInfos = ( $ti ); 173 }173 } 174 174 else { 175 175 @tableInfos = @{ $ti }; … … 186 186 if (not $tableInfo->{consolidate}) { 187 187 push @urls, [ domain => $tableInfo->{name}, raw => $rawUrl, ]; 188 next;188 next; 189 189 } 190 190 … … 216 216 if (not @reportComposites) { 217 217 push @urls, [ domain => $tableInfo->{name}, raw => $rawUrl, ]; 218 218 219 219 } 220 220
