Changeset 9506 for trunk/wp-admin/link.php
- Timestamp:
- 11/04/2008 03:22:24 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/link.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link.php
r8697 r9506 18 18 wp_die( __('You do not have sufficient permissions to edit the links for this blog.') ); 19 19 20 if ( '' != $_POST['deletebookmarks'])20 if ( !empty($_POST['deletebookmarks']) ) 21 21 $action = 'deletebookmarks'; 22 if ( '' != $_POST['move'])22 if ( !empty($_POST['move']) ) 23 23 $action = 'move'; 24 if ( '' != $_POST['linkcheck'])25 $linkcheck = $_POST[ linkcheck];24 if ( !empty($_POST['linkcheck']) ) 25 $linkcheck = $_POST['linkcheck']; 26 26 27 27 $this_file = 'link-manager.php';
Note: See TracChangeset
for help on using the changeset viewer.