This file is indexed.

/usr/share/horde/ansel/templates/gallery/partial/_styles.html.php is in php-horde-ansel 3.0.5+debian0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  <tr>
   <td align="right" valign="top"><strong><?php echo _("Thumbnail Style"); ?></strong></td>
   <td>
    <select name="thumbnail_style" id="thumbnail_style">
      <?php foreach ($this->availableThumbs as $type => $title): ?>
        <option value="<?php echo $type ?>" <?php if ($this->properties['style']->thumbstyle == $type): ?>selected="selected"<?php endif; ?>><?php echo $title ?></option>
      <?php endforeach;?>
    </select>
   </td>
  </tr>
  <tr>
   <td align="right" valign="top"><strong><?php echo _("Background Color"); ?></strong></td>
   <td>
    <select name="background_color" id="background_color">
      <option value="none" <?php echo ($this->properties['style']->background == 'none') ? 'selected="selected"' : '' ?>>None</option>
      <option value="white" <?php echo ($this->properties['style']->background == 'white') ? 'selected="selected"' : '' ?>>White</option>
    </select>
   </td>
  </tr>
  <tr>
   <td align="right" valign="top"><strong><?php echo _("View Style"); ?></strong></td>
   <td>
    <select name="gallery_view">
     <?php foreach ($this->galleryViews as $type => $title): ?>
       <option value="<?php echo $type ?>"<?php if ($this->properties['style']->gallery_view == $type): ?>selected="selected"<?php endif; ?>><?php echo $title ?></option>
     <?php endforeach; ?>
    </select>
   </td>
  </tr>