mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 23:35:57 +00:00
pref-system: PDO
This commit is contained in:
@@ -20,7 +20,7 @@ class Pref_System extends Handler_Protected {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function clearLog() {
|
function clearLog() {
|
||||||
$this->dbh->query("DELETE FROM ttrss_error_log");
|
$this->pdo->query("DELETE FROM ttrss_error_log");
|
||||||
}
|
}
|
||||||
|
|
||||||
function index() {
|
function index() {
|
||||||
@@ -30,7 +30,7 @@ class Pref_System extends Handler_Protected {
|
|||||||
|
|
||||||
if (LOG_DESTINATION == "sql") {
|
if (LOG_DESTINATION == "sql") {
|
||||||
|
|
||||||
$result = $this->dbh->query("SELECT errno, errstr, filename, lineno,
|
$res = $this->pdo->query("SELECT errno, errstr, filename, lineno,
|
||||||
created_at, login, context FROM ttrss_error_log
|
created_at, login, context FROM ttrss_error_log
|
||||||
LEFT JOIN ttrss_users ON (owner_uid = ttrss_users.id)
|
LEFT JOIN ttrss_users ON (owner_uid = ttrss_users.id)
|
||||||
ORDER BY ttrss_error_log.id DESC
|
ORDER BY ttrss_error_log.id DESC
|
||||||
@@ -52,7 +52,7 @@ class Pref_System extends Handler_Protected {
|
|||||||
<td width='5%'>".__("Date")."</td>
|
<td width='5%'>".__("Date")."</td>
|
||||||
</tr>";
|
</tr>";
|
||||||
|
|
||||||
while ($line = $this->dbh->fetch_assoc($result)) {
|
while ($line = $res->fetch()) {
|
||||||
print "<tr class=\"errrow\">";
|
print "<tr class=\"errrow\">";
|
||||||
|
|
||||||
foreach ($line as $k => $v) {
|
foreach ($line as $k => $v) {
|
||||||
|
|||||||
Reference in New Issue
Block a user