aboutsummaryrefslogtreecommitdiff
path: root/app/Models/CategoryDAO.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 /app/Models/CategoryDAO.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 'app/Models/CategoryDAO.php')
-rw-r--r--app/Models/CategoryDAO.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/CategoryDAO.php b/app/Models/CategoryDAO.php
index 1b8717e83..210830640 100644
--- a/app/Models/CategoryDAO.php
+++ b/app/Models/CategoryDAO.php
@@ -166,7 +166,7 @@ class FreshRSS_CategoryDAO extends Minz_ModelPdo implements FreshRSS_Searchable
}
}
Minz_Log::error(__method__ . ' error: ' . json_encode($info));
- return false;
+ yield false;
}
}