Changeset 3760
- Timestamp:
- 05/04/06 09:20:44 (3 years ago)
- Files:
-
- trunk/wp-admin/link-import.php (modified) (2 diffs)
- trunk/wp-admin/user-edit.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/link-import.php
r3665 r3760 25 25 <h2><?php _e('Import your blogroll from another system') ?> </h2> 26 26 <form enctype="multipart/form-data" action="link-import.php" method="post" name="blogroll"> 27 <?php wp_nonce_field('import-bookmarks') ?> 27 28 28 29 <p><?php _e('If a program or website you use allows you to export your bookmarks or subscriptions as OPML you may import them here.'); ?> … … 64 65 65 66 case 1: { 66 check_admin_referer( );67 check_admin_referer('import-bookmarks'); 67 68 68 69 include_once('admin-header.php'); trunk/wp-admin/user-edit.php
r3679 r3760 33 33 case 'update': 34 34 35 check_admin_referer( );35 check_admin_referer('update-user' . $user_id); 36 36 37 37 if (!current_user_can('edit_users')) … … 75 75 76 76 <form name="profile" id="your-profile" action="user-edit.php" method="post"> 77 <?php wp_nonce_field('update-user' . $user_ID) ?> 77 78 <p> 78 79 <input type="hidden" name="from" value="profile" />
