Changeset 5100 for branches/2.0/wp-includes/pluggable-functions.php
- Timestamp:
- 03/25/2007 11:12:38 PM (19 years ago)
- File:
-
- 1 edited
-
branches/2.0/wp-includes/pluggable-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0/wp-includes/pluggable-functions.php
r4514 r5100 467 467 function wp_verify_nonce($nonce, $action = -1) { 468 468 $user = wp_get_current_user(); 469 $uid = $user->id;469 $uid = (int) $user->id; 470 470 471 471 $i = ceil(time() / 43200); … … 481 481 function wp_create_nonce($action = -1) { 482 482 $user = wp_get_current_user(); 483 $uid = $user->id;483 $uid = (int) $user->id; 484 484 485 485 $i = ceil(time() / 43200);
Note: See TracChangeset
for help on using the changeset viewer.