- Timestamp:
- Dec 3, 2009, 5:11:25 PM (15 years ago)
- Location:
- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/custom_functions.php
r469 r477 95 95 96 96 $output = ''; 97 $author_cookie = get_xpress_dir_name() . "_select_author" ;97 $author_cookie = 'select_' . get_xpress_dir_name() . "_author" ; 98 98 if (!empty($_COOKIE[$author_cookie])){ 99 99 $uid = intval($_COOKIE[$author_cookie]); … … 115 115 extract( $r ); 116 116 $output = ''; 117 $author_cookie = get_xpress_dir_name() . "_select_author" ;117 $author_cookie = 'select_' . get_xpress_dir_name() . "_author" ; 118 118 if (!empty($_COOKIE[$author_cookie])){ 119 119 $output = intval($_COOKIE[$author_cookie]); -
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php
r469 r477 242 242 if (is_admin()) return $query_vars; 243 243 244 $author_cookie = get_xpress_dir_name() . "_select_author" ;244 $author_cookie = 'select_' . get_xpress_dir_name() . "_author" ; 245 245 if(xpress_is_multi_user()){ 246 246 if (!empty($_GET)){ … … 294 294 if (is_admin()) return $query; 295 295 296 $author_cookie = get_xpress_dir_name() . "_select_author" ;296 $author_cookie = 'select_' . get_xpress_dir_name() . "_author" ; 297 297 298 298 if (strpos($query,'SELECT') === false) return $query;
Note: See TracChangeset
for help on using the changeset viewer.