Fix unrenamed method name.

This commit is contained in:
Lars Jung 2014-06-10 19:54:44 +02:00
parent 98f6611a7a
commit 78ccc49197

View File

@ -148,7 +148,7 @@ class Archive {
$d = normalize_path(dirname($href), true);
$n = basename($href);
if ($this->app->is_managed_url($d) && !$this->app->is_ignored($n)) {
if ($this->app->is_managed_url($d) && !$this->app->is_hidden($n)) {
$real_file = $this->app->to_path($href);
$archived_file = preg_replace("!^" . preg_quote(normalize_path(CURRENT_PATH, true)) . "!", "", $real_file);