mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 12:05:55 +00:00
remove $link
This commit is contained in:
10
opml.php
10
opml.php
@@ -12,21 +12,21 @@
|
||||
|
||||
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
||||
|
||||
if (!init_plugins($link)) return;
|
||||
if (!init_plugins()) return;
|
||||
|
||||
$op = $_REQUEST['op'];
|
||||
|
||||
if ($op == "publish"){
|
||||
$key = db_escape_string($link, $_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 {
|
||||
@@ -34,6 +34,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
db_close($link);
|
||||
db_close();
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user