fixed so that login is only required for import and export of OPML, not for publish
This commit is contained in:
parent
ab53d2034a
commit
a423423956
9
opml.php
9
opml.php
|
@ -11,9 +11,6 @@
|
|||
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
||||
|
||||
init_connection($link);
|
||||
login_sequence($link);
|
||||
|
||||
$owner_uid = $_SESSION["uid"];
|
||||
|
||||
function opml_export($link, $owner_uid, $hide_private_feeds=False) {
|
||||
header("Content-type: application/xml+opml");
|
||||
|
@ -92,6 +89,9 @@
|
|||
if (!$op) $op = "Export";
|
||||
|
||||
if ($op == "Export") {
|
||||
|
||||
login_sequence($link);
|
||||
$owner_uid = $_SESSION["uid"];
|
||||
return opml_export($link, $owner_uid);
|
||||
}
|
||||
if ($op == "publish"){
|
||||
|
@ -113,6 +113,9 @@
|
|||
|
||||
if ($op == "Import") {
|
||||
|
||||
login_sequence($link);
|
||||
$owner_uid = $_SESSION["uid"];
|
||||
|
||||
print "<html>
|
||||
<head>
|
||||
<link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
|
||||
|
|
Loading…
Reference in New Issue