Changeset 458 for trunk/wp-admin/linkmanager.php
- Timestamp:
- 10/20/2003 08:53:13 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/linkmanager.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/linkmanager.php
r296 r458 85 85 } 86 86 87 $links_show_cat_id = $HTTP_COOKIE_VARS["links_show_cat_id "];88 $links_show_order = $HTTP_COOKIE_VARS["links_show_order "];87 $links_show_cat_id = $HTTP_COOKIE_VARS["links_show_cat_id_".$cookiehash]; 88 $links_show_order = $HTTP_COOKIE_VARS["links_show_order_".$cookiehash]; 89 89 90 90 if ($action2 != '') … … 264 264 " WHERE link_id=$link_id"); 265 265 } // end if save 266 setcookie('links_show_cat_id ', $links_show_cat_id, time()+600);266 setcookie('links_show_cat_id_'.$cookiehash, $links_show_cat_id, time()+600); 267 267 header('Location: '.$this_file); 268 268 break; … … 289 289 } 290 290 $links_show_cat_id = $cat_id; 291 setcookie("links_show_cat_id ", $links_show_cat_id, time()+600);291 setcookie("links_show_cat_id_".$cookiehash, $links_show_cat_id, time()+600); 292 292 header('Location: '.$this_file); 293 293 break; … … 442 442 $links_show_order = $order_by; 443 443 444 setcookie('links_show_cat_id ', $links_show_cat_id, time()+600);445 setcookie('links_show_order ', $links_show_order, time()+600);444 setcookie('links_show_cat_id_'.$cookiehash, $links_show_cat_id, time()+600); 445 setcookie('links_show_order_'.$cookiehash, $links_show_order, time()+600); 446 446 $standalone=0; 447 447 include_once ("./b2header.php");
Note: See TracChangeset
for help on using the changeset viewer.