Define COOKIEHASH and new get_profile function. TODO: re-org function soup
git-svn-id: http://svn.automattic.com/wordpress/trunk@1513 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b2fe32b18d
commit
a2342f1a3f
|
@ -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'");
|
||||
|
|
|
@ -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 = '&';
|
||||
//}
|
||||
// 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');
|
||||
|
||||
|
|
Loading…
Reference in New Issue