aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/entryController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2018-07-08 11:29:05 +0200
committerGravatar GitHub <noreply@github.com> 2018-07-08 11:29:05 +0200
commit99dfdbc10d9daa8059fd6c017b1580ad493aa8f6 (patch)
treee3070af9257aa22ee3ee1965ee51f227dc102692 /app/Controllers/entryController.php
parent82ac9454ddf337b79b41fedae37eaf15e6e0cb12 (diff)
Avoid feed credentials in logs (#1949)
* Avoid feed credentials in logs Related to https://github.com/FreshRSS/FreshRSS/pull/1891 * Changelog 1949
Diffstat (limited to 'app/Controllers/entryController.php')
-rwxr-xr-xapp/Controllers/entryController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php
index 73e181b07..838ad56ce 100755
--- a/app/Controllers/entryController.php
+++ b/app/Controllers/entryController.php
@@ -186,7 +186,7 @@ class FreshRSS_entry_Controller extends Minz_ActionController {
$nb = $entryDAO->cleanOldEntries($feed->id(), $date_min, $feed_history);
if ($nb > 0) {
$nb_total += $nb;
- Minz_Log::debug($nb . ' old entries cleaned in feed [' . $feed->url() . ']');
+ Minz_Log::debug($nb . ' old entries cleaned in feed [' . $feed->url(false) . ']');
}
}
}