]> git.wh0rd.org - tt-rss.git/blobdiff - opml.php
Merge pull request #422 from rwetzlmayr/master
[tt-rss.git] / opml.php
index e98013009e4335693efbd7557e3c1355e28b4070..af3694051d16d64f3b4862c18202ba10e101c8cd 100644 (file)
--- a/opml.php
+++ b/opml.php
@@ -1,14 +1,8 @@
 <?php
-       set_include_path(get_include_path() . PATH_SEPARATOR .
-               dirname(__FILE__) . "/include");
-
-       function __autoload($class) {
-               $file = "classes/".strtolower(basename($class)).".php";
-               if (file_exists($file)) {
-                       require $file;
-               }
-       }
+       set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
+               get_include_path());
 
+       require_once "autoload.php";
        require_once "functions.php";
        require_once "sessions.php";
        require_once "sanity_check.php";
        require_once "db.php";
        require_once "db-prefs.php";
 
-       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
-
-       if (!init_connection($link)) return;
+       if (!init_plugins()) return;
 
        $op = $_REQUEST['op'];
 
        if ($op == "publish"){
-               $key = db_escape_string($_REQUEST["key"]);
+               $key = db_escape_string( $_REQUEST["key"]);
 
-               $result = db_query($link, "SELECT owner_uid
+               $result = db_query( "SELECT owner_uid
                                FROM ttrss_access_keys WHERE
                                access_key = '$key' AND feed_id = 'OPML:Publish'");
 
                if (db_num_rows($result) == 1) {
                        $owner_uid = db_fetch_result($result, 0, "owner_uid");
 
-                       $opml = new Opml($link, $_REQUEST);
+                       $opml = new Opml($_REQUEST);
                        $opml->opml_export("", $owner_uid, true, false);
 
                } else {
@@ -40,6 +32,4 @@
                }
        }
 
-       db_close($link);
-
 ?>