aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-10-23 02:12:49 +0200
committerGravatar GitHub <noreply@github.com> 2019-10-23 02:12:49 +0200
commitfdfd8ce9be182943e73d20ec3bff4d560c5b7503 (patch)
tree50a3eb3de6cc3a9842b6dbdf2d1ca3b5457a3c1d /lib/lib_rss.php
parentcc0db9af4f980829faa4bf0960617807b32fb4fa (diff)
Workaround for MySQL limitation 1093 (#2586)
* Workaround for MySQL limitation 1093 https://github.com/FreshRSS/FreshRSS/pull/2335#issuecomment-545194606 including minor Travis fixes
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index 2a230e6f8..f4b5c68e6 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -301,9 +301,9 @@ function invalidateHttpCache($username = '') {
$username = Minz_Session::param('currentUser', '_');
}
$ok = @touch(DATA_PATH . '/users/' . $username . '/log.txt');
- if (!$ok) {
+ //if (!$ok) {
//TODO: Display notification error on front-end
- }
+ //}
return $ok;
}