Changeset 1108 for trunk/wp-admin/link-import.php
- Timestamp:
- 04/20/2004 10:56:47 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-import.php
r1107 r1108 9 9 $this_file = 'link-import.php'; 10 10 11 $step = $ HTTP_POST_VARS['step'];11 $step = $_POST['step']; 12 12 if (!$step) $step = 0; 13 13 ?> … … 89 89 <h2>Importing...</h2> 90 90 <?php 91 $cat_id = $ HTTP_POST_VARS['cat_id'];91 $cat_id = $_POST['cat_id']; 92 92 if (($cat_id == '') || ($cat_id == 0)) { 93 93 $cat_id = 1; 94 94 } 95 95 96 $opml_url = $ HTTP_POST_VARS['opml_url'];96 $opml_url = $_POST['opml_url']; 97 97 if (isset($opml_url) && $opml_url != '') { 98 98 $blogrolling = true;
Note: See TracChangeset
for help on using the changeset viewer.