change profile_url in profile_uid

This commit is contained in:
rabuzarus 2015-06-28 13:32:03 +02:00
parent 373bb0822b
commit 4463ae11d8
1 changed files with 2 additions and 2 deletions

View File

@ -1451,7 +1451,7 @@ if(! function_exists('current_theme')) {
// Find the theme that belongs to the user whose stuff we are looking at // Find the theme that belongs to the user whose stuff we are looking at
if($a->profile_uid && $a->profile_uid != local_user()) { if($a->profile_uid && ($a->profile_uid != local_user())) {
$r = q("select theme from user where uid = %d limit 1", $r = q("select theme from user where uid = %d limit 1",
intval($a->profile_uid) intval($a->profile_uid)
); );
@ -1462,7 +1462,7 @@ if(! function_exists('current_theme')) {
// Allow folks to over-rule user themes and always use their own on their own site. // Allow folks to over-rule user themes and always use their own on their own site.
// This works only if the user is on the same server // This works only if the user is on the same server
if($page_theme && local_user() && local_user() != $a->profile_url) { if($page_theme && local_user() && (local_user() != $a->profile_uid)) {
if(get_pconfig(local_user(),'system','always_my_theme')) if(get_pconfig(local_user(),'system','always_my_theme'))
$page_theme = null; $page_theme = null;
} }