mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 12:40:01 +01:00
MDL-10296 made print_user_picture cater for https possibility in user/edit
This commit is contained in:
parent
05a71b3341
commit
874851f610
@ -3768,7 +3768,11 @@ function print_user_picture($user, $courseid, $picture=NULL, $size=0, $return=fa
|
||||
$file = 'f2';
|
||||
}
|
||||
$class = "userpicture";
|
||||
|
||||
if (!empty($HTTPSPAGEREQUIRED)) {
|
||||
$wwwroot = $CFG->httpswwwroot;
|
||||
} else {
|
||||
$wwwroot = $CFG->wwwroot;
|
||||
}
|
||||
|
||||
if (is_null($picture)) {
|
||||
$picture = $user->picture;
|
||||
@ -3776,9 +3780,9 @@ function print_user_picture($user, $courseid, $picture=NULL, $size=0, $return=fa
|
||||
|
||||
if ($picture) { // Print custom user picture
|
||||
if ($CFG->slasharguments) { // Use this method if possible for better caching
|
||||
$src = $CFG->wwwroot .'/user/pix.php/'. $user->id .'/'. $file .'.jpg';
|
||||
$src = $wwwroot .'/user/pix.php/'. $user->id .'/'. $file .'.jpg';
|
||||
} else {
|
||||
$src = $CFG->wwwroot .'/user/pix.php?file=/'. $user->id .'/'. $file .'.jpg';
|
||||
$src = $wwwroot .'/user/pix.php?file=/'. $user->id .'/'. $file .'.jpg';
|
||||
}
|
||||
} else { // Print default user pictures (use theme version if available)
|
||||
$class .= " defaultuserpic";
|
||||
|
Loading…
x
Reference in New Issue
Block a user