Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Kobschätzki <niels@kobschaetzki.net>2020-01-12 22:43:32 +0300
committerGitHub <noreply@github.com>2020-01-12 22:43:32 +0300
commit7b8b20be4c87cf5e0cd3d102619ee61cca2c7034 (patch)
tree0eba7edb57d2481b843952e8862b0a1d825e0af9
parenteb0d9dab95b2e942c48a1c46e7d416311c2c3f04 (diff)
parente1dda2a2874f17aecabbfbdbe36c78d3d724c02e (diff)
Merge pull request #1 from nielsk/nielsk-api_feedreader-patch-1
get_pdo -> get_dbh
-rw-r--r--data/tt-rss-feedreader-plugin/api_feedreader/init.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/tt-rss-feedreader-plugin/api_feedreader/init.php b/data/tt-rss-feedreader-plugin/api_feedreader/init.php
index a07787e4..c6e445a6 100644
--- a/data/tt-rss-feedreader-plugin/api_feedreader/init.php
+++ b/data/tt-rss-feedreader-plugin/api_feedreader/init.php
@@ -20,7 +20,7 @@ class Api_feedreader extends Plugin {
function init($host)
{
$this->host = $host;
- $this->dbh = $host->get_pdo();
+ $this->dbh = $host->get_dbh();
$this->host->add_api_method("addLabel", $this);
$this->host->add_api_method("removeLabel", $this);
$this->host->add_api_method("renameLabel", $this);