pdo pdo pdo
This commit is contained in:
parent
4d13514dd4
commit
fdda3e4efb
1 changed files with 7 additions and 6 deletions
|
@ -591,10 +591,10 @@
|
||||||
|
|
||||||
if (get_schema_version() < 63) $profile_qpart = "";
|
if (get_schema_version() < 63) $profile_qpart = "";
|
||||||
|
|
||||||
////db_query("BEGIN");
|
|
||||||
|
|
||||||
$pdo = DB::pdo();
|
$pdo = DB::pdo();
|
||||||
|
|
||||||
|
$pdo->beginTransaction();
|
||||||
|
|
||||||
$sth = $pdo->query("SELECT pref_name,def_value FROM ttrss_prefs");
|
$sth = $pdo->query("SELECT pref_name,def_value FROM ttrss_prefs");
|
||||||
|
|
||||||
$profile = $profile ? $profile : null;
|
$profile = $profile ? $profile : null;
|
||||||
|
@ -633,7 +633,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
////db_query("COMMIT");
|
$pdo->commit();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1952,11 +1952,10 @@
|
||||||
|
|
||||||
if (!$feed_cat) return false;
|
if (!$feed_cat) return false;
|
||||||
|
|
||||||
////db_query("BEGIN");
|
|
||||||
|
|
||||||
$feed_cat = mb_substr($feed_cat, 0, 250);
|
$feed_cat = mb_substr($feed_cat, 0, 250);
|
||||||
|
|
||||||
$pdo = Db::pdo();
|
$pdo = Db::pdo();
|
||||||
|
$pdo->beginTransaction();
|
||||||
|
|
||||||
$sth = $pdo->prepare("SELECT id FROM ttrss_feed_categories
|
$sth = $pdo->prepare("SELECT id FROM ttrss_feed_categories
|
||||||
WHERE (:parent IS NULL AND parent_cat IS NULL OR parent_cat = :parent)
|
WHERE (:parent IS NULL AND parent_cat IS NULL OR parent_cat = :parent)
|
||||||
|
@ -1969,11 +1968,13 @@
|
||||||
VALUES (?, ?, ?)");
|
VALUES (?, ?, ?)");
|
||||||
$sth->execute([$_SESSION['uid'], $feed_cat, $parent_cat_id]);
|
$sth->execute([$_SESSION['uid'], $feed_cat, $parent_cat_id]);
|
||||||
|
|
||||||
//db_query("COMMIT");
|
$pdo->commit();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$pdo->commit();
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue