Ticket #12411: opml.php.diff
| File opml.php.diff, 861 bytes (added by nadavvin, 3 years ago) |
|---|
-
wp-admin/import/opml.php
19 19 20 20 switch ($step) { 21 21 case 0: { 22 include_once(' admin-header.php');22 include_once('../admin-header.php'); 23 23 if ( !current_user_can('manage_links') ) 24 24 wp_die(__('Cheatin’ uh?')); 25 25 … … 71 71 case 1: { 72 72 check_admin_referer('import-bookmarks'); 73 73 74 include_once(' admin-header.php');74 include_once('../admin-header.php'); 75 75 if ( !current_user_can('manage_links') ) 76 76 wp_die(__('Cheatin’ uh?')); 77 77 ?> … … 108 108 } 109 109 110 110 /** Load OPML Parser */ 111 include_once(' link-parse-opml.php');111 include_once('../link-parse-opml.php'); 112 112 113 113 $link_count = count($names); 114 114 for ( $i = 0; $i < $link_count; $i++ ) {
