/**
  * Outputs the object as HTML.
  * @param PICTURE $entry
  * @access private
  */
 protected function _display_as_plain_text($entry)
 {
     $folder = $entry->parent_folder();
     $f = $entry->date->formatter();
     $f->clear_flags();
     echo $this->line($folder->format_date($entry->date, $f));
     echo $this->line('<' . $entry->full_file_name() . '>');
     parent::_display_as_plain_text($entry);
 }