Changed to superglobals, and eliminated $use_cache (since we always do).

git-svn-id: http://svn.automattic.com/wordpress/trunk@1108 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2004-04-20 22:56:47 +00:00
parent e27e90a7b6
commit 10c6b7ea9c
49 changed files with 432 additions and 438 deletions

View File

@@ -8,7 +8,7 @@ $parent_file = 'link-manager.php';
$title = 'Import Blogroll';
$this_file = 'link-import.php';
$step = $HTTP_POST_VARS['step'];
$step = $_POST['step'];
if (!$step) $step = 0;
?>
<?php
@@ -88,12 +88,12 @@ switch ($step) {
<h2>Importing...</h2>
<?php
$cat_id = $HTTP_POST_VARS['cat_id'];
$cat_id = $_POST['cat_id'];
if (($cat_id == '') || ($cat_id == 0)) {
$cat_id = 1;
}
$opml_url = $HTTP_POST_VARS['opml_url'];
$opml_url = $_POST['opml_url'];
if (isset($opml_url) && $opml_url != '') {
$blogrolling = true;
}