summaryrefslogtreecommitdiff
path: root/classes/dlg.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-02 01:08:30 +0300
committerAndrew Dolgov <[email protected]>2017-12-02 01:08:30 +0300
commitc949a9282e1102e82cca5bb158e84f742e8f1456 (patch)
tree2f9ad4bd1cd8ed3c365aa3e2b449a9fec036ca62 /classes/dlg.php
parent4102eb843ff11a4aae0cc890cf700b7e3b4e72e2 (diff)
OPML: use PDO; minor fixes
Diffstat (limited to 'classes/dlg.php')
-rw-r--r--classes/dlg.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/classes/dlg.php b/classes/dlg.php
index 324b741fa..6f22c81e6 100644
--- a/classes/dlg.php
+++ b/classes/dlg.php
@@ -18,16 +18,12 @@ class Dlg extends Handler_Protected {
print "<div class=\"prefFeedOPMLHolder\">";
- $this->pdo->beginTransaction();
-
print "<ul class='nomarks'>";
$opml = new Opml($_REQUEST);
$opml->opml_import($_SESSION["uid"]);
- $this->pdo->commit();
-
print "</ul>";
print "</div>";