Define COOKIEHASH and new get_profile function. TODO: re-org function soup

git-svn-id: https://develop.svn.wordpress.org/trunk@1513 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-08-07 01:22:17 +00:00
parent 32bd9e6ac7
commit fed106eb57
2 changed files with 13 additions and 6 deletions

View File

@ -12,6 +12,13 @@ if (!function_exists('floatval')) {
}
}
function get_profile($field, $user = false) {
global $wpdb;
if (!$user)
$user = $wpdb->escape($_COOKIE['wordpressuser_' . COOKIEHASH]);
return $wpdb->get_var("SELECT $field FROM $wpdb->users WHERE user_login = '$user'");
}
function mysql2date($dateformatstring, $mysqlstring, $use_b2configmonthsdays = 1) {
global $month, $weekday;
$m = $mysqlstring;
@ -165,6 +172,7 @@ function get_currentuserinfo() { // a bit like get_userdata(), on steroids
function get_userdata($userid) {
global $wpdb, $cache_userdata;
$userid = (int) $userid;
if ( empty($cache_userdata[$userid]) ) {
$cache_userdata[$userid] =
$wpdb->get_row("SELECT * FROM $wpdb->users WHERE ID = '$userid'");

View File

@ -61,16 +61,15 @@ if ( !update_user_cache() && !strstr($_SERVER['PHP_SELF'], 'install.php') )
die("It doesn't look like you've installed WP yet. Try running <a href='wp-admin/install.php'>install.php</a>.");
$wpdb->show_errors();
if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) {
if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) :
$querystring_start = '?';
$querystring_equal = '=';
$querystring_separator = '&amp;';
//}
// Used to guarantee unique cookies
$cookiehash = md5(get_settings('siteurl'));
} //end !$_wp_installing
// Used to guarantee unique hash cookies
$cookiehash = md5(get_settings('siteurl'));
define('COOKIEHASH', $cookiehash);
endif;
require (ABSPATH . WPINC . '/vars.php');