Make WordPress Core


Ignore:
Timestamp:
04/20/2004 10:56:47 PM (21 years ago)
Author:
saxmatt
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/link-import.php

    r1107 r1108  
    99$this_file = 'link-import.php';
    1010
    11 $step = $HTTP_POST_VARS['step'];
     11$step = $_POST['step'];
    1212if (!$step) $step = 0;
    1313?>
     
    8989     <h2>Importing...</h2>
    9090<?php
    91                 $cat_id = $HTTP_POST_VARS['cat_id'];
     91                $cat_id = $_POST['cat_id'];
    9292                if (($cat_id == '') || ($cat_id == 0)) {
    9393                    $cat_id  = 1;
    9494                }
    9595
    96                 $opml_url = $HTTP_POST_VARS['opml_url'];
     96                $opml_url = $_POST['opml_url'];
    9797                if (isset($opml_url) && $opml_url != '') {
    9898                    $blogrolling = true;
Note: See TracChangeset for help on using the changeset viewer.