This file is indexed.

/usr/share/horde/ansel/gallery/captions.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
/**
 * Copyright 2001-2016 Horde LLC (http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (GPL). If you
 * did not receive this file, see http://www.horde.org/licenses/gpl.
 *
 * @author Chuck Hagenbuch <chuck@horde.org>
 */

require_once __DIR__ . '/../lib/Application.php';
Horde_Registry::appInit('ansel');

$galleryId = Horde_Util::getFormData('gallery');
if (!$galleryId) {
    Ansel::getUrlFor('view', array('view' => 'List'), true)->redirect();
    exit;
}
try {
    $gallery = $GLOBALS['injector']
        ->getInstance('Ansel_Storage')
        ->getGallery($galleryId);
} catch (Ansel_Exception $e) {
    $notification->push(
        sprintf(_("Error accessing %s: %s"), $galleryId, $e->getMessage()),
        'horde.error');
    Ansel::getUrlFor('view', array('view' => 'List'), true)->redirect();
    exit;
}

if (!$gallery->hasPermission($registry->getAuth(), Horde_Perms::EDIT)) {
    $notification->push(
        _("Access denied setting captions for this gallery."),
        'horde.error');
    Ansel::getUrlFor('view', array('view' => 'List'), true)->redirect();
    exit;
}

// We might be browsing by date
$date = Ansel::getDateParameter();
$gallery->setDate($date);

// Run through the action handlers.
$do = Horde_Util::getFormData('do');
switch ($do) {
case 'save':
    // Save a batch of captions.
    $images = $gallery->getImages();
    foreach ($images as $image) {
        if (($caption = Horde_Util::getFormData('img' . $image->id)) !== null) {
            $image->caption = $caption;
            $image->save();
        }
    }

    $notification->push(_("Captions Saved."), 'horde.success');
    Ansel::getUrlFor(
        'view',
        array_merge(
            array(
                'gallery' => $galleryId,
                'slug' => $gallery->get('slug'),
                'view' => 'Gallery'),
            $date),
        true)->redirect();
    exit;
}

$page_output->header(array(
    'title' => _("Caption Editor")
));
$notification->notify(array('listeners' => 'status'));
require ANSEL_TEMPLATES . '/captions/captions.inc';
$page_output->footer();