Revision 8fa22ab8
Von Jan Büren vor fast 3 Jahren hinzugefügt
SL/File/Backend/Webdav.pm | ||
---|---|---|
84 | 84 |
my ($self, %params) = @_; |
85 | 85 |
die "no dbfile" unless $params{dbfile}; |
86 | 86 |
my ($path, undef, undef) = $self->webdav_path($params{dbfile}); |
87 |
die "no file" if !-f $path;
|
|
87 |
die "Path not found: " . $path unless -f $path;
|
|
88 | 88 |
return $path; |
89 | 89 |
} |
90 | 90 |
|
... | ... | |
105 | 105 |
} |
106 | 106 |
|
107 | 107 |
sub enabled { |
108 |
return 0 unless $::instance_conf->get_doc_webdav; |
|
109 |
return 1; |
|
108 |
return $::instance_conf->get_doc_webdav; |
|
110 | 109 |
} |
111 | 110 |
|
112 | 111 |
# |
Auch abrufbar als: Unified diff
S:F:B:Webdav.pm Pfad auch ausgeben, damit man weiß, was fehlt
Ferner für boolean enabled Rückgabewert direkt von get_doc_webdav ausgeben